refactor builtin object, some machine too

This commit is contained in:
Torsten Ruger
2016-12-15 19:20:54 +02:00
parent 94c423c2b3
commit 5ea6bfed27
4 changed files with 52 additions and 22 deletions

View File

@ -0,0 +1,28 @@
module Register
module Builtin
module CompileHelper
def self_and_arg(compiler , source)
#Load self by "calling" on_name
me = compiler.process( Typed::Tree::NameExpression.new( :self) )
# Load the argument
index = compiler.use_reg :Integer
compiler.add_code Register.get_slot(source , :message , Parfait::Message.get_indexed(1), index )
return me , index
end
def compiler_for( method_name , args)
Typed::Compiler.new.create_method(:Object , method_name , args ).init_method
end
# Load the value
def do_load(compiler, source)
value = compiler.use_reg :Integer
compiler.add_code Register.get_slot(source , :message , Parfait::Message.get_indexed(2), value )
value
end
end
end
end