475512146f
* Add emit_nil to other nodes so that they can be replaced with nil, effectively removing them from the code.
32 lines
517 B
Ruby
32 lines
517 B
Ruby
# encoding: utf-8
|
|
|
|
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
|
|
emit_body(nil)
|
|
emit_nil
|
|
end
|
|
|
|
end # While
|
|
end # Node
|
|
end # Mutator
|
|
end # Mutant
|