diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2025-04-16 14:48:12 +0200 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2025-04-16 14:48:12 +0200 |
commit | 3b04c58628f157d3d63e2cb11b32029275ef49f6 (patch) | |
tree | 60a860e6a77dbb7c4b95037c851d6dfbe2f3bd56 /quickjs-opcode.h | |
parent | 83530ac9a7b8cdf691c3d17d96660d020086397c (diff) | |
download | quickjs-3b04c58628f157d3d63e2cb11b32029275ef49f6.tar.gz quickjs-3b04c58628f157d3d63e2cb11b32029275ef49f6.zip |
fixed 'with' access by adding HasPropery() calls - removed unused 'with_get_ref_undef' opcode
Diffstat (limited to 'quickjs-opcode.h')
-rw-r--r-- | quickjs-opcode.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/quickjs-opcode.h b/quickjs-opcode.h index bd7a63b..f20fb11 100644 --- a/quickjs-opcode.h +++ b/quickjs-opcode.h @@ -196,7 +196,6 @@ DEF( with_put_var, 10, 2, 1, atom_label_u8) /* must be in the same order a DEF(with_delete_var, 10, 1, 0, atom_label_u8) /* must be in the same order as scope_xxx */ DEF( with_make_ref, 10, 1, 0, atom_label_u8) /* must be in the same order as scope_xxx */ DEF( with_get_ref, 10, 1, 0, atom_label_u8) /* must be in the same order as scope_xxx */ -DEF(with_get_ref_undef, 10, 1, 0, atom_label_u8) DEF( make_loc_ref, 7, 0, 2, atom_u16) DEF( make_arg_ref, 7, 0, 2, atom_u16) |