mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-28 04:09:05 +00:00
fix: dynamic type checking bugs
This commit is contained in:
parent
a6b72ea636
commit
5affa5065f
12 changed files with 91 additions and 7 deletions
|
@ -12,6 +12,7 @@ Instructions that do not take arguments also use 2 bytes (the argument part is 0
|
|||
* `COMPARE_OP` (6 byte)
|
||||
* `LOAD_GLOBAL` (12 byte)
|
||||
* `LOAD_ATTR` (10 byte)
|
||||
* `BINARY_SUBSCR` (8 byte)
|
||||
|
||||
## STORE_NAME(namei)
|
||||
|
||||
|
@ -120,4 +121,4 @@ Variables captured by the closure. It behaves statically within the same functio
|
|||
## cell variables
|
||||
|
||||
Corresponds to cellvars
|
||||
Variables captured within a function to an inner closure function. Since a copy is made, the original variable remains as it is.
|
||||
Variables captured within a function to an inner closure function. Since a copy is made, the original variable remains as it is.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue