Sha256: 405024b30c00619e0b7be314944e958487a29b6f24d55b03d4657e7707edb90a

Contents?: true

Size: 462 Bytes

Versions: 3

Compression:

Stored size: 462 Bytes

Contents

module Mutant
  class Mutator
    class Node

      # Mutation emitter to handle multiple assignment nodes
      class MultipleAssignment < self

        handle(:masgn)

        children :left, :right

      private

        # Perform dispatch
        #
        # @return [undefined]
        #
        # @api private
        #
        def dispatch
          # noop, for now
        end

      end # MultipleAssignment
    end # Node
  end # Mutator
end # Mutant

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mutant-0.3.0.beta21 lib/mutant/mutator/node/masgn.rb
mutant-0.3.0.beta20 lib/mutant/mutator/node/masgn.rb
mutant-0.3.0.beta19 lib/mutant/mutator/node/masgn.rb