Bystroushaak / tinySelf

Self-like language implemented in the RPython language toolkit.
29 stars 3 forks source link

Speed optimization using global table for message names #87

Open Bystroushaak opened 5 years ago

Bystroushaak commented 5 years ago

Investigate whether it would be possible to speedup method lookups by using numbers corresponding with records in global message name table, as number lookup in dictionary should be faster, as it doesn't require hashing.