work in progress. implementing method lookup cache

This commit is contained in:
hyunghwan.chung
2019-06-22 05:58:55 +00:00
parent e6747b21b8
commit b33e0744d2
2 changed files with 99 additions and 23 deletions

View File

@ -1330,6 +1330,7 @@ struct moo_method_cache_item_t
{
moo_oop_char_t selector;
moo_oop_class_t receiver_class;
int method_type;
moo_oop_method_t method;
moo_oop_class_t method_class;
};