mirror of
https://github.com/micropython/micropython.git
synced 2026-01-05 03:30:14 +01:00
py: Properly implement deletion of locals and derefs, and detect errors.
Needed to reinstate 2 delete opcodes, to specifically check that a local is not deleted twice.
This commit is contained in:
@@ -8,6 +8,7 @@ enum {
|
||||
|
||||
enum {
|
||||
ID_FLAG_IS_PARAM = 0x01,
|
||||
ID_FLAG_IS_DELETED = 0x02,
|
||||
};
|
||||
|
||||
typedef struct _id_info_t {
|
||||
|
||||
Reference in New Issue
Block a user