diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2025-04-12 16:04:59 +0200 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2025-04-12 16:04:59 +0200 |
commit | 4cc4c6c1c55f2f995aa6f42920bbffaa0610da57 (patch) | |
tree | f75359bbc81356167bf3067954165ee1ea05a31f /quickjs-opcode.h | |
parent | 9106fa0b58b0b13551ed2696beb5b6f859972dd9 (diff) | |
download | quickjs-4cc4c6c1c55f2f995aa6f42920bbffaa0610da57.tar.gz quickjs-4cc4c6c1c55f2f995aa6f42920bbffaa0610da57.zip |
optimized js_parse_class_default_ctor() (bnoordhuis)
Diffstat (limited to 'quickjs-opcode.h')
-rw-r--r-- | quickjs-opcode.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/quickjs-opcode.h b/quickjs-opcode.h index 17448d7..bd7a63b 100644 --- a/quickjs-opcode.h +++ b/quickjs-opcode.h @@ -110,6 +110,7 @@ DEF( return, 1, 1, 0, none) DEF( return_undef, 1, 0, 0, none) DEF(check_ctor_return, 1, 1, 2, none) DEF( check_ctor, 1, 0, 0, none) +DEF( init_ctor, 1, 0, 1, none) DEF( check_brand, 1, 2, 2, none) /* this_obj func -> this_obj func */ DEF( add_brand, 1, 2, 0, none) /* this_obj home_obj -> */ DEF( return_async, 1, 1, 0, none) |