free_mutant/lib/mutant/mutator/node/begin.rb

34 lines
589 B
Ruby
Raw Normal View History

2013-06-04 16:16:04 -04:00
module Mutant
class Mutator
class Node
2013-06-21 09:05:27 -04:00
2013-06-04 16:16:04 -04:00
# Mutator for begin nodes
class Begin < self
handle(:begin)
private
# Emit mutants
#
# @return [undefined]
#
# @api private
#
def dispatch
2013-06-21 09:05:27 -04:00
Util::Array.each(children) do |children|
if children.length > 1
emit_self(*children)
end
end
children.each do |child|
emit(child)
end
emit(nil)
2013-06-04 16:16:04 -04:00
end
end # Block
end # Node
end # Mutator
end # Mutant