just renaming

This commit is contained in:
Torsten Ruger
2015-05-16 12:54:11 +03:00
parent 9376b8bc16
commit bee269f7a8
13 changed files with 20 additions and 20 deletions

View File

@ -93,11 +93,11 @@ module Virtual
# very fiddly chicken 'n egg problem. Functions need to be in the right order, and in fact we
# have to define some dummies, just for the other to compile
# TODO: go through the virtual parfait layer and adjust function names to what they really are
obj = @space.get_or_create_class :Object
obj = @space.get_class_by_name :Object
[:index_of , :_get_instance_variable , :_set_instance_variable].each do |f|
obj.add_instance_method Builtin::Object.send(f , nil)
end
obj = @space.get_or_create_class :Kernel
obj = @space.get_class_by_name :Kernel
# create main first, __init__ calls it
@main = Builtin::Kernel.send(:main , @context)
obj.add_instance_method @main
@ -110,15 +110,15 @@ module Virtual
# the point of which is that by the time main executes, all is "normal"
@init = Block.new(:_init_ , nil )
@init.add_code(Register::RegisterMain.new(underscore_init))
obj = @space.get_or_create_class :Integer
obj = @space.get_class_by_name :Integer
[:putint,:fibo].each do |f|
obj.add_instance_method Builtin::Integer.send(f , nil)
end
obj = @space.get_or_create_class :Word
obj = @space.get_class_by_name :Word
[:get , :set , :puts].each do |f|
obj.add_instance_method Builtin::Word.send(f , nil)
end
obj = space.get_or_create_class :Array
obj = space.get_class_by_name :Array
[:get , :set , :push].each do |f|
obj.add_instance_method Builtin::Array.send(f , nil)
end