diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2023-12-22 11:05:18 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2023-12-22 15:05:54 +0100 |
commit | 54cccc1f0bc389f3e406c68f9017c0223e7abf7f (patch) | |
tree | fb6c5422c9280f7d2a6639483ae9321fcfaa1ab0 /lib/quickjs/quickjs.c | |
parent | cc7163ecd4b99b149fa16a2c41155493aec26448 (diff) | |
download | chawan-54cccc1f0bc389f3e406c68f9017c0223e7abf7f.tar.gz |
'for of' expression cannot start with 'async'
Diffstat (limited to 'lib/quickjs/quickjs.c')
-rw-r--r-- | lib/quickjs/quickjs.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/quickjs/quickjs.c b/lib/quickjs/quickjs.c index 2bddb9e4..a10a5913 100644 --- a/lib/quickjs/quickjs.c +++ b/lib/quickjs/quickjs.c @@ -25922,6 +25922,9 @@ static __exception int js_parse_for_in_of(JSParseState *s, int label_name, emit_atom(s, var_name); emit_u16(s, fd->scope_level); } + } else if (!is_async && token_is_pseudo_keyword(s, JS_ATOM_async) && + peek_token(s, FALSE) == TOK_OF) { + return js_parse_error(s, "'for of' expression cannot start with 'async'"); } else { int skip_bits; if ((s->token.val == '[' || s->token.val == '{') |