2013-07-28 19:03:06 -04:00
|
|
|
# encoding: utf-8
|
|
|
|
|
2013-01-04 16:16:03 -05:00
|
|
|
module Mutant
|
|
|
|
class Mutator
|
|
|
|
class Node
|
|
|
|
|
2013-06-04 04:25:13 -04:00
|
|
|
# Mutator for when nodes
|
2013-01-04 16:16:03 -05:00
|
|
|
class When < self
|
|
|
|
|
2013-06-04 04:25:13 -04:00
|
|
|
handle(:when)
|
2013-01-04 16:16:03 -05:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
# Emit mutations
|
|
|
|
#
|
|
|
|
# @return [undefined]
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
|
|
|
def dispatch
|
2013-06-14 12:22:34 -04:00
|
|
|
mutate_body
|
|
|
|
mutate_conditions
|
|
|
|
end
|
|
|
|
|
|
|
|
# Emit condition mutations
|
|
|
|
#
|
|
|
|
# @return [undefined]
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
|
|
|
def mutate_conditions
|
|
|
|
conditions = children.length - 1
|
|
|
|
children[0..-2].each_index do |index|
|
|
|
|
delete_child(index) if conditions > 1
|
|
|
|
mutate_child(index)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Emit body mutations
|
|
|
|
#
|
|
|
|
# @return [undefined]
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
|
|
|
def mutate_body
|
2013-07-27 15:14:41 -04:00
|
|
|
mutate_child(children.length - 1)
|
2013-01-04 16:16:03 -05:00
|
|
|
end
|
|
|
|
|
2013-06-04 04:25:13 -04:00
|
|
|
end # When
|
|
|
|
end # Node
|
|
|
|
end # Mutator
|
|
|
|
end # Mutant
|