aboutsummaryrefslogtreecommitdiff
path: root/py/runtime0.h
diff options
context:
space:
mode:
authorDamien George2014-04-17 22:10:53 +0100
committerDamien George2014-04-17 22:10:53 +0100
commit729f7b42d65c016c9d5f27fb8a8122869f06c129 (patch)
tree8d8d8c2a89ff9011b06650c256a2d5f2458c930c /py/runtime0.h
parentde7c425139c92745280b62f7ebb756def96d072a (diff)
py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr.
mp_obj_t->subscr now does load/store/delete.
Diffstat (limited to 'py/runtime0.h')
-rw-r--r--py/runtime0.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/py/runtime0.h b/py/runtime0.h
index eef370679..19fd75125 100644
--- a/py/runtime0.h
+++ b/py/runtime0.h
@@ -24,7 +24,6 @@ typedef enum {
} mp_unary_op_t;
typedef enum {
- MP_BINARY_OP_SUBSCR,
MP_BINARY_OP_OR,
MP_BINARY_OP_XOR,
MP_BINARY_OP_AND,
@@ -75,7 +74,7 @@ typedef enum {
MP_F_LOAD_METHOD,
MP_F_STORE_NAME,
MP_F_STORE_ATTR,
- MP_F_STORE_SUBSCR,
+ MP_F_OBJ_SUBSCR,
MP_F_OBJ_IS_TRUE,
MP_F_UNARY_OP,
MP_F_BINARY_OP,