2012-07-26 13:25:23 -04:00
|
|
|
module Mutant
|
|
|
|
# An abstract context where mutations can be appied to.
|
|
|
|
class Context
|
2012-11-02 21:12:33 -04:00
|
|
|
include Adamantium::Flat, AbstractClass
|
2012-07-26 13:25:23 -04:00
|
|
|
|
2012-08-15 22:10:54 -04:00
|
|
|
# Return root ast node
|
2012-07-26 13:25:23 -04:00
|
|
|
#
|
|
|
|
# @return [Rubinis::AST::Script]
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
2012-08-02 19:28:15 -04:00
|
|
|
abstract_method :root
|
2012-08-14 06:26:56 -04:00
|
|
|
|
2012-08-15 22:10:54 -04:00
|
|
|
# Return source path
|
|
|
|
#
|
|
|
|
# @return [String]
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
2012-10-26 05:24:29 -04:00
|
|
|
attr_reader :source_path
|
2012-08-15 22:10:54 -04:00
|
|
|
|
2012-08-14 06:26:56 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
# Initialize context
|
|
|
|
#
|
|
|
|
# @param [String] source_path
|
|
|
|
#
|
|
|
|
# @return [undefined]
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
|
|
|
def initialize(source_path)
|
|
|
|
@source_path = source_path
|
|
|
|
end
|
2012-07-26 13:25:23 -04:00
|
|
|
end
|
|
|
|
end
|