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
I'm not sure if this breaks anything right now, but in #138 I ran into the issue of var __proto__ = ... which assigned to the environment's object's __proto__ instead of being a normal key in an object. This probably affects more things as well.
This likely could also affect funcIndex, locals and globals. Perhaps, other things as well. This should be a relatively simple fix, just switching them to maps
The text was updated successfully, but these errors were encountered:
I'm not sure if this breaks anything right now, but in #138 I ran into the issue of
var __proto__ = ...
which assigned to the environment's object's__proto__
instead of being a normal key in an object. This probably affects more things as well.This likely could also affect
funcIndex
,locals
andglobals
. Perhaps, other things as well. This should be a relatively simple fix, just switching them to mapsThe text was updated successfully, but these errors were encountered: