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

@ -9,7 +9,7 @@ module Register
# main entry point, ie __init__ calls this
# defined here as empty, to be redefined
def main context
compiler = Typed::Compiler.new.create_method(:Space , :main ).init_method
compiler = Typed::MethodCompiler.new.create_method(:Space , :main ).init_method
return compiler.method
end