summaryrefslogtreecommitdiff
path: root/quickjs-opcode.h
diff options
context:
space:
mode:
authorFabrice Bellard <fabrice@bellard.org>2025-04-16 14:48:12 +0200
committerFabrice Bellard <fabrice@bellard.org>2025-04-16 14:48:12 +0200
commit3b04c58628f157d3d63e2cb11b32029275ef49f6 (patch)
tree60a860e6a77dbb7c4b95037c851d6dfbe2f3bd56 /quickjs-opcode.h
parent83530ac9a7b8cdf691c3d17d96660d020086397c (diff)
downloadquickjs-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.h1
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)