459d028de1
* Expand attr_reader :name, to def name; @name; end As attr_reader defined methods do not have a valid source location. * Expose more internal state to allow the generation of nice match identifications. Needs to be cleaned up.
54 lines
925 B
Ruby
54 lines
925 B
Ruby
module Mutant
|
|
# An abstract context where mutations can be appied to.
|
|
class Context
|
|
include Immutable, Abstract
|
|
|
|
# Return root ast node
|
|
#
|
|
# @param [Rubinius::AST::Node] node
|
|
#
|
|
# @return [Rubinis::AST::Script]
|
|
#
|
|
# @api private
|
|
#
|
|
abstract_method :root
|
|
|
|
# Return source path
|
|
#
|
|
# @return [String]
|
|
#
|
|
# @api private
|
|
#
|
|
def source_path
|
|
@source_path
|
|
end
|
|
|
|
private
|
|
|
|
# Initialize context
|
|
#
|
|
# @param [String] source_path
|
|
#
|
|
# @return [undefined]
|
|
#
|
|
# @api private
|
|
#
|
|
def initialize(source_path)
|
|
@source_path = source_path
|
|
end
|
|
|
|
# Return script node
|
|
#
|
|
# @param [Rubinius::AST::Node] node
|
|
#
|
|
# @return [Rubinius::AST::Script]
|
|
#
|
|
# @api private
|
|
#
|
|
def script(node)
|
|
Rubinius::AST::Script.new(node).tap do |script|
|
|
script.file = @source_path
|
|
end
|
|
end
|
|
end
|
|
end
|