renames Typed to Vm

This commit is contained in:
Torsten Ruger
2017-01-14 19:28:44 +02:00
parent 75c7ca950e
commit bd78a2d555
95 changed files with 61 additions and 61 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::MethodCompiler.new.create_method(:Space , :main ).init_method
compiler = Vm::MethodCompiler.new.create_method(:Space , :main ).init_method
return compiler.method
end