summaryrefslogtreecommitdiff
path: root/quickjs.c
diff options
context:
space:
mode:
authorFabrice Bellard <fabrice@bellard.org>2023-12-22 11:04:54 +0100
committerFabrice Bellard <fabrice@bellard.org>2023-12-22 11:04:54 +0100
commit43420235d50ce3f499d165af4a9368e79519f85b (patch)
tree08e6260c5fd47d6bfa12c454a19f1140d29005a3 /quickjs.c
parent3ba181e6c6d659e85fd6a296c00eea7d29637112 (diff)
downloadquickjs-43420235d50ce3f499d165af4a9368e79519f85b.tar.gz
quickjs-43420235d50ce3f499d165af4a9368e79519f85b.zip
removed incorrect await in async yield*
Diffstat (limited to 'quickjs.c')
-rw-r--r--quickjs.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/quickjs.c b/quickjs.c
index 43dbe34..a01b5cc 100644
--- a/quickjs.c
+++ b/quickjs.c
@@ -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 */