2013-07-28 19:03:06 -04:00
|
|
|
# encoding: utf-8
|
|
|
|
|
2013-06-14 13:53:55 -04:00
|
|
|
module Mutant
|
|
|
|
class Mutator
|
|
|
|
class Node
|
|
|
|
class Send
|
|
|
|
|
|
|
|
# Mutator for sends that correspond to a binary operator
|
|
|
|
class Binary < self
|
|
|
|
|
2013-06-21 09:51:30 -04:00
|
|
|
children :left, :operator, :right
|
2013-06-14 13:53:55 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
# Emit mutations
|
|
|
|
#
|
|
|
|
# @return [undefined]
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
|
|
|
def dispatch
|
2013-06-21 09:51:30 -04:00
|
|
|
emit(left)
|
|
|
|
emit_left_mutations
|
2013-06-21 10:18:11 -04:00
|
|
|
emit(right) unless right.type == :splat
|
2013-06-21 09:51:30 -04:00
|
|
|
emit_right_mutations
|
2013-06-14 13:53:55 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end # Binary
|
|
|
|
|
|
|
|
end # Send
|
|
|
|
end # Node
|
|
|
|
end # Mutator
|
|
|
|
end # Mutant
|