free_mutant/lib/mutant/loader.rb
2015-11-15 23:13:43 +00:00

38 lines
689 B
Ruby

module Mutant
# Base class for code loaders
class Loader
include AbstractType, Concord.new(:root, :subject), Procto.call
# Eval based loader
class Eval < self
# Call loader
#
# @return [undefined]
#
# One off the very few valid uses of eval
#
# rubocop:disable Lint/Eval
def call
eval(
source,
TOPLEVEL_BINDING,
subject.source_path.to_s,
subject.source_line
)
self
end
private
# Source generated from AST
#
# @return [String]
def source
Unparser.unparse(root)
end
end # Eval
end # Loader
end # Mutant