diff options
Diffstat (limited to 'py/runtime0.h')
-rw-r--r-- | py/runtime0.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/py/runtime0.h b/py/runtime0.h index 8a78a2304b..be598c670e 100644 --- a/py/runtime0.h +++ b/py/runtime0.h @@ -65,6 +65,7 @@ typedef enum { typedef enum { MP_F_LOAD_CONST_DEC = 0, + MP_F_LOAD_CONST_INT, MP_F_LOAD_CONST_STR, MP_F_LOAD_NAME, MP_F_LOAD_GLOBAL, @@ -89,6 +90,11 @@ typedef enum { MP_F_CALL_METHOD_N_KW, MP_F_GETITER, MP_F_ITERNEXT, + MP_F_IMPORT_NAME, + MP_F_IMPORT_FROM, + MP_F_IMPORT_ALL, + MP_F_NEW_SLICE, + MP_F_UNPACK_SEQUENCE, MP_F_NUMBER_OF, } mp_fun_kind_t; |