free_mutant/lib/mutant/loader.rb

66 lines
1 KiB
Ruby
Raw Normal View History

# encoding: utf-8
module Mutant
# Base class for code loaders
class Loader
2012-11-26 11:30:00 +01:00
include AbstractType
extend MethodObject
private
# Run the loader
#
# @return [undefined]
#
# @api private
#
abstract_method :run
# Initialize and insert mutation into vm
#
# @param [Parser::AST::Node] root
# @param [Subject] subject
#
# @return [undefined]
#
# @api private
#
def initialize(root, subject)
@root, @subject = root, subject
run
2012-08-20 05:01:26 +02:00
end
# Eval based loader
class Eval < self
2013-01-04 20:07:41 +01:00
private
# Run loader
#
# @return [undefined]
#
# @api private
#
def run
2013-07-28 19:24:00 +02:00
eval(
source,
TOPLEVEL_BINDING,
@subject.source_path.to_s,
@subject.source_line
)
end
# Return source
#
# @return [String]
#
# @api private
#
def source
Unparser.unparse(@root)
end
end # Eval
end # Loader
end # Mutant