You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We talked about speeding up the interpreter by avoiding hash maps for variable lookup. We should be able to assign statically an integer to each variable.
Unfortunately, we can't do this safely right now because of a bug in the interpreter (#5637). In some cases, the name resolution is not static. Once the bug is fixed, that should be feasible.
We talked about speeding up the interpreter by avoiding hash maps for variable lookup. We should be able to assign statically an integer to each variable.
Unfortunately, we can't do this safely right now because of a bug in the interpreter (#5637). In some cases, the name resolution is not static. Once the bug is fixed, that should be feasible.
cc @ttsugriy
The text was updated successfully, but these errors were encountered: