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

33 lines
577 B
Ruby

# encoding: utf-8
module Mutant
class Mutator
class Node
# Mutator for while expressions
class ConditionalLoop < self
handle(:until, :while)
children :condition, :body
private
# Emit mutations
#
# @return [undefined]
#
# @api private
#
def dispatch
emit_singletons
emit_condition_mutations
emit_body_mutations if body
emit_body(nil)
emit_body(RAISE)
end
end # While
end # Node
end # Mutator
end # Mutant