add set_internal

and the set_slot with register
very much like the get_slot for get_internal
This commit is contained in:
Torsten Ruger
2015-11-08 17:10:36 +02:00
parent ede7639861
commit c38775e933
5 changed files with 32 additions and 5 deletions

View File

@ -15,7 +15,7 @@ module Register
# self[index] basically. Index is the first arg
# return is stored in return_value
# (this method returns a new method off course, like all builting)
# (this method returns a new method off course, like all builtin)
def get_internal context
compiler = Soml::Compiler.new.create_method(:Object , :get_internal , []).init_method
source = "get_internal"
@ -31,6 +31,24 @@ module Register
return compiler.method
end
# self[index] = val basically. Index is the first arg , vlaue the second
# no return
def set_internal context
compiler = Soml::Compiler.new.create_method(:Object , :set_internal , []).init_method
source = "set_internal"
#Load self by "calling" on_name
me = compiler.process( s(:name , :self) )
# Load the index
index = compiler.use_reg :Integer
compiler.add_code Register.get_slot(source , :message , Parfait::Message.get_indexed(1), index )
# Load the value
value = compiler.use_reg :Integer
compiler.add_code Register.get_slot(source , :message , Parfait::Message.get_indexed(2), value )
# do the set
compiler.add_code SetSlot.new( source , value , me , index)
return compiler.method
end
end
extend ClassMethods
end