2019-10-04 20:06:22 +02:00
|
|
|
# passed in? name and cache_entry
|
|
|
|
word! << name_
|
|
|
|
cache_entry! << cache_entry_
|
|
|
|
# local var assignment
|
|
|
|
callable_method << cache_entry.cached_type.methods
|
|
|
|
|
|
|
|
while_start_label
|
|
|
|
|
|
|
|
goto(exit_label) if( nil == callable_method)
|
|
|
|
|
|
|
|
goto(ok_label) if(callable_method.name == word)
|
|
|
|
|
|
|
|
callable_method = callable_method.next_callable
|
|
|
|
|
|
|
|
goto(while_start_label)
|
|
|
|
|
|
|
|
exit_label
|
|
|
|
|
|
|
|
MethodMissing.new(compiler.source_name , word.symbol).to_risc(compiler)
|
|
|
|
|
|
|
|
ok_label
|
2019-10-05 18:37:24 +02:00
|
|
|
cache_entry.cached_method = callable_method
|