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
The CloseUpvalues opcode can take three operands, i.e. up to three upvalues can be closed in one operation. The present implementation lazily only does one.
See TODO: interpreter/src/compiler.rs:247
Refactor the loop to add up to three upvalues per CloseUpvalues opcode.
The text was updated successfully, but these errors were encountered:
The
CloseUpvalues
opcode can take three operands, i.e. up to three upvalues can be closed in one operation. The present implementation lazily only does one.See TODO:
interpreter/src/compiler.rs:247
Refactor the loop to add up to three upvalues per
CloseUpvalues
opcode.The text was updated successfully, but these errors were encountered: