diff options
Diffstat (limited to 'py/runtime0.h')
-rw-r--r-- | py/runtime0.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/py/runtime0.h b/py/runtime0.h index 9edf7ec0e7..33fd80e64c 100644 --- a/py/runtime0.h +++ b/py/runtime0.h @@ -62,6 +62,7 @@ typedef enum { RT_F_STORE_SUBSCR, RT_F_IS_TRUE, RT_F_UNARY_OP, + RT_F_BINARY_OP, RT_F_BUILD_TUPLE, RT_F_BUILD_LIST, RT_F_LIST_APPEND, @@ -70,9 +71,8 @@ typedef enum { RT_F_BUILD_SET, RT_F_STORE_SET, RT_F_MAKE_FUNCTION_FROM_ID, - RT_F_CALL_FUNCTION_N, - RT_F_CALL_METHOD_N, - RT_F_BINARY_OP, + RT_F_CALL_FUNCTION_N_KW_FOR_NATIVE, + RT_F_CALL_METHOD_N_KW, RT_F_GETITER, RT_F_ITERNEXT, RT_F_NUMBER_OF, |