free_mutant/lib/mutant/mutator/node/and_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

34 lines
552 B
Ruby

# encoding: utf-8
module Mutant
class Mutator
class Node
# OpAsgn mutator
class AndAsgn < self
handle(:and_asgn)
children :left, :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 # OrAsgn
end # Node
end # Mutator
end # Mutant