fix: dynamic type checking bugs

This commit is contained in:
Shunsuke Shibayama 2023-08-19 16:34:07 +09:00
parent a6b72ea636
commit 5affa5065f
12 changed files with 91 additions and 7 deletions

View file

@ -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.