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

30 lines
479 B
Ruby
Raw Normal View History

module Mutant
class Mutator
class Node
# Mutator for while expressions
class While < self
handle(:while)
children :condition, :body
private
# Emit mutations
#
# @return [undefined]
#
# @api private
#
def dispatch
emit_condition_mutations
emit_body_mutations
2013-07-04 21:09:07 -04:00
emit_body(nil)
end
end # While
end # Node
end # Mutator
end # Mutant