2013-07-28 19:03:06 -04:00
|
|
|
# encoding: utf-8
|
|
|
|
|
2013-01-13 16:25:49 -05:00
|
|
|
module Mutant
|
|
|
|
class Subject
|
|
|
|
# Abstract base class for method subjects
|
|
|
|
class Method < self
|
|
|
|
|
|
|
|
# Test if method is public
|
|
|
|
#
|
|
|
|
# @return [true]
|
|
|
|
# if method is public
|
|
|
|
#
|
|
|
|
# @return [false]
|
|
|
|
# otherwise
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
|
|
|
abstract_method :public?
|
|
|
|
|
2013-06-15 10:32:40 -04:00
|
|
|
# Return method name
|
2013-06-14 14:29:36 -04:00
|
|
|
#
|
2013-06-15 10:32:40 -04:00
|
|
|
# @return [Symbol]
|
2013-06-14 14:29:36 -04:00
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
2013-06-15 10:32:40 -04:00
|
|
|
def name
|
|
|
|
node.children[self.class::NAME_INDEX]
|
2013-06-14 14:29:36 -04:00
|
|
|
end
|
2013-06-14 14:23:46 -04:00
|
|
|
|
2013-08-04 12:49:42 -04:00
|
|
|
# Return match expression
|
|
|
|
#
|
|
|
|
# @return [String]
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
|
|
|
def match_expression
|
|
|
|
"#{context.identification}#{self.class::SYMBOL}#{name}"
|
|
|
|
end
|
|
|
|
|
2013-06-15 10:32:40 -04:00
|
|
|
private
|
|
|
|
|
2013-07-04 18:54:50 -04:00
|
|
|
# Return mutations
|
|
|
|
#
|
2013-07-14 19:17:15 -04:00
|
|
|
# @param [#<<] emitter
|
|
|
|
#
|
|
|
|
# @return [undefined]
|
2013-07-04 18:54:50 -04:00
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
2013-07-14 19:17:15 -04:00
|
|
|
def generate_mutations(emitter)
|
|
|
|
emitter << noop_mutation
|
|
|
|
Mutator.each(node) do |mutant|
|
|
|
|
emitter << Mutation::Evil.new(self, mutant)
|
2013-07-04 18:54:50 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-06-15 10:32:40 -04:00
|
|
|
# Return scope
|
2013-01-21 17:54:25 -05:00
|
|
|
#
|
2013-06-15 10:32:40 -04:00
|
|
|
# @return [Class, Module]
|
2013-01-21 17:54:25 -05:00
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
2013-06-15 10:32:40 -04:00
|
|
|
def scope
|
|
|
|
context.scope
|
2013-01-21 17:54:25 -05:00
|
|
|
end
|
|
|
|
|
2013-06-14 14:23:46 -04:00
|
|
|
end # Method
|
|
|
|
end # Subject
|
|
|
|
end # Mutant
|