2012-12-06 15:30:28 -05:00
|
|
|
module Mutant
|
|
|
|
class Mutator
|
|
|
|
class Node
|
2013-01-04 16:16:03 -05:00
|
|
|
|
|
|
|
# Namespace for send mutators
|
2012-12-06 15:30:28 -05:00
|
|
|
class Send < self
|
|
|
|
|
2013-06-04 04:25:13 -04:00
|
|
|
handle(:send)
|
2012-12-06 15:30:28 -05:00
|
|
|
|
2013-06-21 09:51:30 -04:00
|
|
|
children :receiver, :selector
|
|
|
|
|
2012-12-06 15:30:28 -05:00
|
|
|
private
|
|
|
|
|
2012-12-10 11:11:08 -05:00
|
|
|
# Emit mutations
|
|
|
|
#
|
|
|
|
# @return [undefined]
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
|
|
|
def dispatch
|
2013-06-14 13:53:55 -04:00
|
|
|
if binary_operator?
|
|
|
|
run(Binary)
|
|
|
|
return
|
|
|
|
end
|
2013-06-21 09:51:30 -04:00
|
|
|
normal_dispatch
|
|
|
|
end
|
|
|
|
|
2013-06-21 09:58:35 -04:00
|
|
|
# Return arguments
|
|
|
|
#
|
|
|
|
# @return [Enumerable<Parser::AST::Node>]
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
|
|
|
alias_method :arguments, :remaining_children
|
|
|
|
|
2013-06-21 09:51:30 -04:00
|
|
|
# Perform normal, non special case dispatch
|
|
|
|
#
|
|
|
|
# @return [undefined]
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
|
|
|
def normal_dispatch
|
2013-06-14 13:47:23 -04:00
|
|
|
emit(receiver) if receiver
|
|
|
|
mutate_receiver
|
2013-06-15 11:16:34 -04:00
|
|
|
emit_argument_propagation
|
2013-06-14 13:47:23 -04:00
|
|
|
mutate_arguments
|
|
|
|
end
|
|
|
|
|
2013-06-14 13:53:55 -04:00
|
|
|
# Test for binary operator
|
|
|
|
#
|
|
|
|
# @return [true]
|
|
|
|
# if send is a binary operator
|
|
|
|
#
|
|
|
|
# @return [false]
|
|
|
|
# otherwise
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
|
|
|
def binary_operator?
|
|
|
|
arguments.one? && BINARY_METHOD_OPERATORS.include?(selector)
|
|
|
|
end
|
|
|
|
|
2013-06-14 13:47:23 -04:00
|
|
|
# Mutate arguments
|
|
|
|
#
|
|
|
|
# @return [undefined]
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
|
|
|
def mutate_arguments
|
|
|
|
return if arguments.empty?
|
|
|
|
emit_self(receiver, selector)
|
2013-06-21 09:51:30 -04:00
|
|
|
remaining_children_with_index.each do |node, index|
|
2013-06-14 13:47:23 -04:00
|
|
|
mutate_child(index)
|
|
|
|
delete_child(index)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-06-21 21:25:18 -04:00
|
|
|
NO_PROPAGATE = [ :splat, :block_pass ].to_set
|
|
|
|
|
2013-06-15 11:16:34 -04:00
|
|
|
# Emit argument propagation
|
|
|
|
#
|
2013-06-17 05:47:27 -04:00
|
|
|
# @return [undefined]
|
2013-06-15 11:16:34 -04:00
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
|
|
|
def emit_argument_propagation
|
|
|
|
return unless arguments.one?
|
2013-06-21 18:32:42 -04:00
|
|
|
node = arguments.first
|
2013-06-21 21:25:18 -04:00
|
|
|
return if NO_PROPAGATE.include?(node.type)
|
2013-06-15 11:16:34 -04:00
|
|
|
emit(arguments.first)
|
|
|
|
end
|
|
|
|
|
2013-06-14 13:47:23 -04:00
|
|
|
# Emit receiver mutations
|
|
|
|
#
|
|
|
|
# @return [undefined]
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
|
|
|
def mutate_receiver
|
|
|
|
return unless receiver
|
|
|
|
emit_implicit_self
|
2013-06-21 09:51:30 -04:00
|
|
|
emit_receiver_mutations
|
2013-06-14 13:47:23 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Emit implicit self mutation
|
|
|
|
#
|
|
|
|
# @return [undefined]
|
|
|
|
#
|
2013-06-15 10:37:43 -04:00
|
|
|
# @api private
|
2013-06-14 13:47:23 -04:00
|
|
|
#
|
|
|
|
def emit_implicit_self
|
|
|
|
if receiver.type == :self and !KEYWORDS.include?(selector)
|
2013-06-21 09:51:30 -04:00
|
|
|
emit_receiver(nil)
|
2013-06-14 13:47:23 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-06-04 04:25:13 -04:00
|
|
|
end # Send
|
|
|
|
end # Node
|
|
|
|
end # Mutator
|
|
|
|
end # Mutant
|