This commit is contained in:
Reid D. 'arrdem' McKenzie 2022-06-01 00:11:14 -06:00
parent b439466887
commit 533960376d

View file

@ -122,6 +122,7 @@ class Opcode:
Construct a closure over the function reference at the top of the stack.
This may produce nullary closures.
"""
nargs: int = 0
class CLOSUREC(t.NamedTuple):
@ -129,6 +130,7 @@ class Opcode:
Further close over the closure at the top of the stack.
This may produce nullary closures.
"""
nargs: int = 0
class CALLC(t.NamedTuple):