free_mutant/lib/mutant/mutator/call.rb
Markus Schirp cc811aecf5 Add support for mutating if statements
* Also some other minor cleanups
2012-08-01 15:55:49 +02:00

106 lines
2.3 KiB
Ruby

module Mutant
class Mutator
# Abstract class for mutatiosn where messages are send
class Call < Mutator
handle(Rubinius::AST::Send)
private
# Return receiver AST node
#
# @return [Rubinius::AST::Node]
#
# @api private
#
def receiver
node.receiver
end
# Return name of call
#
# @return [Symbol]
#
# @api private
#
def name
node.name
end
# Check if receiver is self
#
# @return [true]
# returns true when receiver is a Rubinius::AST::Self node
#
# @return [false]
# return false otherwise
#
# @api private
#
def self?
receiver.kind_of?(Rubinius::AST::Self)
end
# Emit mutation that replaces explicit send to self with implicit send to self
#
# @example:
#
# # This class does use Foo#a with explicitly specifing the receiver self.
# # But an implicit (privately) call should be used as there is no need for
# # specifing en explicit receiver.
#
# class Foo # Mutation
# def print_a # def print_a
# puts self.a # puts a
# end # end
#
# def a
# :bar
# end
# end
#
# There will not be any exception so the mutant is not killed and such calls where
# implicit receiver should be used will be spotted.
#
# @return [undefined]
#
# @api private
#
def emit_implicit_self_receiver
return unless self?
mutant = dup_node
mutant.privately = true
# TODO: Fix rubinius to allow this as an attr_accessor
mutant.instance_variable_set(:@vcall_style,true)
emit_safe(mutant)
end
# Emit mutations
#
# @return [undefined]
#
# @api private
#
def dispatch
emit_implicit_self_receiver
end
class SendWithArguments < Call
handle(Rubinius::AST::SendWithArguments)
private
# Emut mutations
#
# @return [undefined]
#
# @api private
#
def dispatch
super
end
end
end
end
end