free_mutant/lib/mutant/mutator/node/op_asgn.rb
2015-11-15 23:13:43 +00:00

28 lines
481 B
Ruby

module Mutant
class Mutator
class Node
# OpAsgn mutator
class OpAsgn < self
handle(:op_asgn)
children :left, :operation, :right
private
# Emit mutations
#
# @return [undefined]
def dispatch
emit_singletons
emit_left_mutations do |node|
!n_self?(node)
end
emit_right_mutations
end
end # OpAsgn
end # Node
end # Mutator
end # Mutant