free_mutant/lib/mutant/mutator/node/op_asgn.rb
Markus Schirp 017ccc1044 Add expression => self mutation
Also reorganizes parts of meta to align filenames to node name better.

Closes #191
2014-06-05 17:48:39 +00:00

33 lines
561 B
Ruby

# encoding: utf-8
module Mutant
class Mutator
class Node
# OpAsgn mutator
class OpAsgn < self
handle(:op_asgn)
children :left, :operation, :right
private
# Emit mutations
#
# @return [undefined]
#
# @api private
#
def dispatch
emit_singletons
emit_left_mutations do |mutation|
!mutation.type.equal?(:self)
end
emit_right_mutations
end
end # OpAsgn
end # Node
end # Mutator
end # Mutant