boot process 90 percent done

Creating the class and layout objects in the
right order was tricky, but  now mostly done
This commit is contained in:
Torsten Ruger
2015-05-23 12:15:06 +03:00
parent 94f49bf5c2
commit 1d9ef6d5c8
4 changed files with 36 additions and 35 deletions

View File

@ -23,7 +23,7 @@ module Virtual
# get the function from my class. easy peasy
puts "Me is #{me.class}"
method = me.get_class.get_instance_method(code.name)
raise "Method not implemented #{clazz.name}.#{code.name}" unless method
raise "Method not implemented #{me.class}.#{code.name}" unless method
new_codes << MethodCall.new( method )
else
# note: this is the current view: call internal send, even the method name says else