rubyx/lib/risc/builtin/compile_helper.rb
2018-06-29 13:03:19 +03:00

15 lines
360 B
Ruby

module Risc
module Builtin
module CompileHelper
def compiler_for( clazz_name , method_name , arguments , locals = {})
frame = Parfait::NamedList.type_for( locals )
args = Parfait::NamedList.type_for( arguments )
Risc::MethodCompiler.compiler_for_class(clazz_name , method_name , args, frame )
end
end
end
end