2013-07-28 16:03:06 -07:00
|
|
|
# encoding: utf-8
|
|
|
|
|
2012-07-26 19:25:23 +02:00
|
|
|
module Mutant
|
2012-11-21 22:28:08 +01:00
|
|
|
# Subject of a mutation
|
2012-08-01 18:34:03 +02:00
|
|
|
class Subject
|
2013-07-28 19:05:17 +02:00
|
|
|
include AbstractType, Adamantium::Flat, Enumerable
|
|
|
|
include Concord::Public.new(:context, :node)
|
2012-07-26 19:25:23 +02:00
|
|
|
|
2013-07-15 01:17:15 +02:00
|
|
|
# Return mutations
|
2012-07-26 19:25:23 +02:00
|
|
|
#
|
2013-07-15 01:17:15 +02:00
|
|
|
# @return [Enumerable<Mutation>]
|
2012-12-11 00:17:19 +01:00
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
2013-07-15 01:17:15 +02:00
|
|
|
def mutations
|
|
|
|
mutations = []
|
|
|
|
generate_mutations(mutations)
|
|
|
|
mutations
|
2012-12-11 00:17:19 +01:00
|
|
|
end
|
2013-07-15 01:17:15 +02:00
|
|
|
memoize :mutations
|
2012-12-11 00:17:19 +01:00
|
|
|
|
2012-12-14 19:53:37 +01:00
|
|
|
# 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 20:23:46 +02:00
|
|
|
node.location.expression.line
|
2012-12-14 19:53:37 +01:00
|
|
|
end
|
|
|
|
|
2013-06-22 23:08:32 -07:00
|
|
|
# Return subject identification
|
2012-07-26 19:25:23 +02:00
|
|
|
#
|
2012-08-16 04:10:54 +02:00
|
|
|
# @return [String]
|
2012-07-26 19:25:23 +02:00
|
|
|
#
|
|
|
|
# @api private
|
2012-07-31 04:10:37 +02:00
|
|
|
#
|
2012-08-16 04:10:54 +02:00
|
|
|
def identification
|
2013-08-04 18:49:42 +02:00
|
|
|
"#{match_expression}:#{source_path}:#{source_line}"
|
2012-07-26 19:25:23 +02:00
|
|
|
end
|
2012-08-16 04:10:54 +02:00
|
|
|
memoize :identification
|
2012-07-26 19:25:23 +02:00
|
|
|
|
2012-08-16 04:10:54 +02:00
|
|
|
# Return source representation of ast
|
2012-08-14 12:27:56 +02:00
|
|
|
#
|
2013-06-21 23:52:57 +02:00
|
|
|
# @return [String]
|
2012-08-14 12:27:56 +02:00
|
|
|
#
|
|
|
|
# @api private
|
2013-04-17 20:31:21 -07:00
|
|
|
#
|
2012-08-16 04:10:54 +02:00
|
|
|
def source
|
2013-06-21 23:52:57 +02:00
|
|
|
Unparser.unparse(node)
|
2012-08-14 12:27:56 +02:00
|
|
|
end
|
2012-08-16 04:10:54 +02:00
|
|
|
memoize :source
|
2012-08-14 12:27:56 +02:00
|
|
|
|
2012-08-14 22:45:34 +02:00
|
|
|
# Return root AST for node
|
|
|
|
#
|
2013-06-04 10:25:13 +02:00
|
|
|
# @param [Parser::AST::Node] node
|
2012-08-14 22:45:34 +02:00
|
|
|
#
|
2013-06-04 10:25:13 +02:00
|
|
|
# @return [Parser::AST::Node]
|
2012-08-14 22:45:34 +02:00
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
|
|
|
def root(node)
|
|
|
|
context.root(node)
|
|
|
|
end
|
|
|
|
|
2012-08-16 04:10:54 +02:00
|
|
|
# Return root AST node for original AST ndoe
|
|
|
|
#
|
2013-06-04 10:25:13 +02:00
|
|
|
# @return [Parser::AST::Node]
|
2012-08-16 04:10:54 +02:00
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
|
|
|
def original_root
|
2012-10-26 11:24:29 +02:00
|
|
|
root(node)
|
2012-08-16 04:10:54 +02:00
|
|
|
end
|
|
|
|
memoize :original_root
|
|
|
|
|
2013-08-04 18:49:42 +02:00
|
|
|
# Return match expression
|
2013-01-13 22:25:49 +01:00
|
|
|
#
|
|
|
|
# @return [String]
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
2013-08-04 18:49:42 +02:00
|
|
|
abstract_method :match_expression
|
|
|
|
|
|
|
|
# Return match prefixes
|
|
|
|
#
|
|
|
|
# @return [Enumerable<String>]
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
|
|
|
def match_prefixes
|
2013-08-04 19:30:34 +02:00
|
|
|
[match_expression].concat(context.match_prefixes)
|
2013-08-04 18:49:42 +02:00
|
|
|
end
|
|
|
|
memoize :match_prefixes
|
|
|
|
|
|
|
|
private
|
2013-01-13 22:25:49 +01:00
|
|
|
|
2013-07-05 00:54:50 +02:00
|
|
|
# Return neutral mutation
|
|
|
|
#
|
|
|
|
# @return [Mutation::Neutral]
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
|
|
|
def noop_mutation
|
|
|
|
Mutation::Neutral::Noop.new(self, node)
|
|
|
|
end
|
|
|
|
|
2013-07-15 01:17:15 +02:00
|
|
|
# Generate mutations
|
|
|
|
#
|
|
|
|
# @param [#<<] emitter
|
|
|
|
#
|
|
|
|
# @return [undefined]
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
|
|
|
abstract_method :generate_mutations
|
|
|
|
|
2013-06-04 10:25:13 +02:00
|
|
|
end # Subject
|
|
|
|
end # Mutant
|