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
accessing a field of an object (e.g. obj["field"]) can only be done using string literals (e.g. "field"). this enhancement should enable passing expressions as attribute names, (e.g. "field" ++ N). keep in mind that this change should not impact the performance, in other words obj["field"] should be evaluated at the same speed as it is today. this could be achieved by generating different instructions for the vm.
The text was updated successfully, but these errors were encountered:
accessing a field of an object (e.g. obj["field"]) can only be done using string literals (e.g. "field"). this enhancement should enable passing expressions as attribute names, (e.g. "field" ++ N). keep in mind that this change should not impact the performance, in other words obj["field"] should be evaluated at the same speed as it is today. this could be achieved by generating different instructions for the vm.
The text was updated successfully, but these errors were encountered: