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
DUP and ITERATOR_NEXT could be made much cleaner using a peek parameter for opcode dispatch. As it stands right now, DUP is handled manually and ITERATOR_NEXT is forced to store its variable in a local (disallowing alternative setting forms that Python allows like for a[3] in x {.
The text was updated successfully, but these errors were encountered:
DUP
andITERATOR_NEXT
could be made much cleaner using apeek
parameter for opcode dispatch. As it stands right now,DUP
is handled manually andITERATOR_NEXT
is forced to store its variable in a local (disallowing alternative setting forms that Python allows likefor a[3] in x {
.The text was updated successfully, but these errors were encountered: