free_mutant/lib/mutant/mutator/node/case.rb
Dan Kubb 475512146f Change emit_nil to not emit on the left node of an assignment
* Add emit_nil to other nodes so that they can be replaced
  with nil, effectively removing them from the code.
2013-09-07 23:57:47 -07:00

62 lines
1.2 KiB
Ruby

# encoding: utf-8
module Mutant
class Mutator
class Node
# Mutator for case nodes
class Case < self
handle(:case)
children :condition
private
# Emit mutations
#
# @return [undefined]
#
# @api private
#
def dispatch
emit_condition_mutations
emit_when_mutations
emit_else_mutations
emit_nil
end
# Emit when mutations
#
# @return [undefined]
#
# @api private
#
def emit_when_mutations
indices = children.each_index.drop(1).take(children.length - 2)
one = indices.one?
indices.each do |index|
mutate_child(index)
delete_child(index) unless one
end
end
# Emit else mutations
#
# @return [undefined]
#
# @api private
#
def emit_else_mutations
else_branch = children.last
else_index = children.length - 1
if else_branch
mutate_child(else_index)
emit_child_update(else_index, nil)
end
end
end # Case
end # Node
end # Mutator
end # Mutant