back to method_compiler

it is what it is
This commit is contained in:
Torsten Ruger
2018-06-30 23:26:28 +03:00
parent 91a99b1239
commit 05669065ca
10 changed files with 12 additions and 12 deletions

View File

@ -36,7 +36,7 @@ module Parfait
def compile_to_risc(for_type)
typed_method = create_typed_method(for_type)
head = source.to_mom( typed_method )
compiler = Risc::RiscCompiler.new( typed_method )
compiler = Risc::MethodCompiler.new( typed_method )
compiler.add_mom(head)
head # return for testing
end