You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.1 KiB
32 lines
1.1 KiB
#include "nlr.h"
|
|
#include "misc.h"
|
|
#include "mpconfig.h"
|
|
#include "qstr.h"
|
|
#include "obj.h"
|
|
#include "runtime.h"
|
|
#include "runtime0.h"
|
|
#include "builtin.h"
|
|
|
|
STATIC mp_obj_t op_getitem(mp_obj_t self_in, mp_obj_t key_in) {
|
|
mp_obj_type_t *type = mp_obj_get_type(self_in);
|
|
return type->subscr(self_in, key_in, MP_OBJ_SENTINEL);
|
|
}
|
|
MP_DEFINE_CONST_FUN_OBJ_2(mp_op_getitem_obj, op_getitem);
|
|
|
|
STATIC mp_obj_t op_setitem(mp_obj_t self_in, mp_obj_t key_in, mp_obj_t value_in) {
|
|
mp_obj_type_t *type = mp_obj_get_type(self_in);
|
|
return type->subscr(self_in, key_in, value_in);
|
|
}
|
|
MP_DEFINE_CONST_FUN_OBJ_3(mp_op_setitem_obj, op_setitem);
|
|
|
|
STATIC mp_obj_t op_delitem(mp_obj_t self_in, mp_obj_t key_in) {
|
|
mp_obj_type_t *type = mp_obj_get_type(self_in);
|
|
return type->subscr(self_in, key_in, MP_OBJ_NULL);
|
|
}
|
|
MP_DEFINE_CONST_FUN_OBJ_2(mp_op_delitem_obj, op_delitem);
|
|
|
|
STATIC mp_obj_t op_contains(mp_obj_t lhs_in, mp_obj_t rhs_in) {
|
|
mp_obj_type_t *type = mp_obj_get_type(lhs_in);
|
|
return type->binary_op(MP_BINARY_OP_IN, lhs_in, rhs_in);
|
|
}
|
|
MP_DEFINE_CONST_FUN_OBJ_2(mp_op_contains_obj, op_contains);
|
|
|