free_mutant/lib/mutant/subject.rb

114 lines
1.9 KiB
Ruby
Raw Normal View History

module Mutant
# Subject of a mutation
2012-08-01 12:34:03 -04:00
class Subject
include AbstractType, Adamantium::Flat, Enumerable, Concord::Public.new(:context, :node)
# Enumerate possible mutations
#
# @return [self]
# returns self if block given
#
# @return [Enumerator<Mutation>]
# returns eumerator if no block given
#
# @api private
#
2012-08-01 12:19:12 -04:00
def each
return to_enum unless block_given?
2012-08-01 12:19:12 -04:00
Mutator.each(node) do |mutant|
2013-01-15 17:46:05 -05:00
yield Mutation::Evil.new(self, mutant)
2012-08-01 12:19:12 -04:00
end
self
end
# Return noop mutation
#
# @return [Mutation::Noop]
#
# @api private
#
def noop
2013-01-15 17:46:05 -05:00
Mutation::Neutral.new(self, node)
end
memoize :noop
# Return source path
#
# @return [String]
#
# @api private
#
def source_path
context.source_path
end
# Return source line
#
# @return [Fixnum]
#
# @api private
#
def source_line
2013-06-14 14:23:46 -04:00
node.location.expression.line
end
2013-06-23 02:08:32 -04:00
# Return subject identification
#
# @return [String]
#
# @api private
#
def identification
"#{subtype}:#{source_path}:#{source_line}"
end
memoize :identification
# Return source representation of ast
#
# @return [String]
#
# @api private
2013-04-17 23:31:21 -04:00
#
def source
Unparser.unparse(node)
end
memoize :source
2012-08-14 16:45:34 -04:00
# Return root AST for node
#
# @param [Parser::AST::Node] node
2012-08-14 16:45:34 -04:00
#
# @return [Parser::AST::Node]
2012-08-14 16:45:34 -04:00
#
# @api private
#
def root(node)
context.root(node)
end
# Return root AST node for original AST ndoe
#
# @return [Parser::AST::Node]
#
# @api private
#
def original_root
root(node)
end
memoize :original_root
private
2013-01-13 16:25:49 -05:00
# Return subtype identifier
#
# @return [String]
#
# @api private
#
abstract_method :subtype
private :subtype
end # Subject
end # Mutant