free_mutant/lib/mutant/mutator/node/case.rb
Markus Schirp a19f3b1691 Nuke UTF-8 encoding headers
* I do not use 1.9.3
* Also keeping them in each file increases mental overhead (true it *can* be autoamted)
* None of the files encodes NON ASCII chars.
* I do not expect it makes any difference, since nobody programmatically
  will consume strings generated by mutant under the assumption they are UTF-8 encoded.
* 1.9.3 Users have to deal with the encoding fuckup under ruby anyways.
2014-06-09 15:37:48 +00:00

59 lines
1.2 KiB
Ruby

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_singletons
emit_condition_mutations if condition
emit_when_mutations
emit_else_mutations
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
return unless else_branch
mutate_child(else_index)
emit_child_update(else_index, nil)
end
end # Case
end # Node
end # Mutator
end # Mutant