free_mutant/lib/mutant/mutator/node/mlhs.rb
2013-06-14 21:12:10 +02:00

26 lines
430 B
Ruby

module Mutant
class Mutator
class Node
class MLHS < self
handle(:mlhs)
private
# Emit mutations
#
# @return [undefined]
#
# @api private
#
def dispatch
children.each_index do |index|
mutate_child(index)
delete_child(index)
end
end
end # MLHS
end # Node
end # Mutator
end # Mutant