2013-06-14 19:53:55 +02:00
|
|
|
module Mutant
|
|
|
|
class Mutator
|
|
|
|
class Node
|
|
|
|
class Send
|
|
|
|
|
|
|
|
# Mutator for sends that correspond to a binary operator
|
|
|
|
class Binary < self
|
|
|
|
|
2013-06-21 15:51:30 +02:00
|
|
|
children :left, :operator, :right
|
2013-06-14 19:53:55 +02:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
# Emit mutations
|
|
|
|
#
|
|
|
|
# @return [undefined]
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
|
|
|
def dispatch
|
2013-06-21 15:51:30 +02:00
|
|
|
emit(left)
|
|
|
|
emit_left_mutations
|
2014-03-30 14:56:51 +00:00
|
|
|
emit_selector_replacement
|
2014-06-10 02:21:42 +00:00
|
|
|
emit(right) unless n_splat?(right)
|
2013-06-21 15:51:30 +02:00
|
|
|
emit_right_mutations
|
2013-06-14 19:53:55 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
end # Binary
|
|
|
|
|
|
|
|
end # Send
|
|
|
|
end # Node
|
|
|
|
end # Mutator
|
|
|
|
end # Mutant
|