Fmt.
This commit is contained in:
parent
af65fbb6f6
commit
d5123351d5
1 changed files with 2 additions and 0 deletions
|
@ -122,6 +122,7 @@ class Opcode:
|
||||||
Construct a closure over the function reference at the top of the stack.
|
Construct a closure over the function reference at the top of the stack.
|
||||||
This may produce nullary closures.
|
This may produce nullary closures.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
nargs: int = 0
|
nargs: int = 0
|
||||||
|
|
||||||
class CLOSUREC(t.NamedTuple):
|
class CLOSUREC(t.NamedTuple):
|
||||||
|
@ -129,6 +130,7 @@ class Opcode:
|
||||||
Further close over the closure at the top of the stack.
|
Further close over the closure at the top of the stack.
|
||||||
This may produce nullary closures.
|
This may produce nullary closures.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
nargs: int = 0
|
nargs: int = 0
|
||||||
|
|
||||||
class CALLC(t.NamedTuple):
|
class CALLC(t.NamedTuple):
|
||||||
|
|
Loading…
Reference in a new issue