free_mutant/lib/mutant/loader.rb

57 lines
919 B
Ruby
Raw Normal View History

# encoding: utf-8
module Mutant
# Base class for code loaders
class Loader
2012-11-26 05:30:00 -05:00
include AbstractType
include Procto.call
# 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
2012-08-19 23:01:26 -04:00
end
# Eval based loader
class Eval < self
2013-01-04 14:07:41 -05:00
# Call loader
#
# @return [undefined]
#
# @api private
#
def call
2013-07-28 13:24:00 -04:00
eval(
source,
TOPLEVEL_BINDING,
@subject.source_path.to_s,
@subject.source_line
)
nil
end
private
# Return source
#
# @return [String]
#
# @api private
#
def source
Unparser.unparse(@root)
end
end # Eval
end # Loader
end # Mutant