diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2023-12-22 11:04:54 +0100 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2023-12-22 11:04:54 +0100 |
commit | 43420235d50ce3f499d165af4a9368e79519f85b (patch) | |
tree | 08e6260c5fd47d6bfa12c454a19f1140d29005a3 /quickjs.c | |
parent | 3ba181e6c6d659e85fd6a296c00eea7d29637112 (diff) | |
download | quickjs-43420235d50ce3f499d165af4a9368e79519f85b.tar.gz quickjs-43420235d50ce3f499d165af4a9368e79519f85b.zip |
removed incorrect await in async yield*
Diffstat (limited to 'quickjs.c')
-rw-r--r-- | quickjs.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -25148,7 +25148,6 @@ static __exception int js_parse_assign_expr2(JSParseState *s, int parse_flags) /* OP_async_yield_star takes the value as parameter */ emit_op(s, OP_get_field); emit_atom(s, JS_ATOM_value); - emit_op(s, OP_await); emit_op(s, OP_async_yield_star); } else { /* OP_yield_star takes (value, done) as parameter */ |