renames compiler to method_compiler

This commit is contained in:
Torsten Ruger
2016-12-18 14:15:19 +02:00
parent 272f99daf7
commit 756cb52a98
22 changed files with 15 additions and 15 deletions

View File

@ -12,7 +12,7 @@ module Statements
def check
assert @expect , "No output given"
compiler = Typed::Compiler.new
compiler = Typed::MethodCompiler.new
produced = compiler.process( Typed.ast_to_code( @input) )
produced = Register.machine.space.get_main.instructions
compare_instructions produced , @expect