Skip to content

Commit

Permalink
Fixed tracking of argument scope.
Browse files Browse the repository at this point in the history
This properly catches unsupported "await" in arguments.

This fixes #730 issue on Github.
  • Loading branch information
xeioex committed Jun 8, 2024
1 parent b81c38b commit 4bc44a5
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
11 changes: 8 additions & 3 deletions src/njs_parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -2816,6 +2816,8 @@ static njs_int_t
njs_parser_arguments(njs_parser_t *parser, njs_lexer_token_t *token,
njs_queue_link_t *current)
{
njs_int_t ret;

/*
* )
* ArgumentList )
Expand All @@ -2827,7 +2829,10 @@ njs_parser_arguments(njs_parser_t *parser, njs_lexer_token_t *token,
return njs_parser_stack_pop(parser);
}

parser->scope->in_args = 1;
ret = njs_parser_scope_begin(parser, NJS_SCOPE_ARGUMENTS, 0);
if (njs_slow_path(ret != NJS_OK)) {
return NJS_ERROR;
}

njs_parser_next(parser, njs_parser_argument_list);

Expand All @@ -2840,7 +2845,7 @@ static njs_int_t
njs_parser_parenthesis_or_comma(njs_parser_t *parser, njs_lexer_token_t *token,
njs_queue_link_t *current)
{
parser->scope->in_args = 0;
njs_parser_scope_end(parser);

if (token->type == NJS_TOKEN_CLOSE_PARENTHESIS) {
njs_lexer_consume_token(parser->lexer, 1);
Expand Down Expand Up @@ -3575,7 +3580,7 @@ njs_parser_await(njs_parser_t *parser, njs_lexer_token_t *token,
return NJS_ERROR;
}

if (parser->scope->in_args) {
if (parser->scope->type == NJS_SCOPE_ARGUMENTS) {
njs_parser_syntax_error(parser, "await in arguments not supported");
return NJS_ERROR;
}
Expand Down
1 change: 0 additions & 1 deletion src/njs_parser.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ struct njs_parser_scope_s {
uint8_t arrow_function;
uint8_t dest_disable;
uint8_t async;
uint8_t in_args;
};


Expand Down
1 change: 1 addition & 0 deletions src/njs_vm.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ typedef struct njs_generator_s njs_generator_t;
typedef enum {
NJS_SCOPE_GLOBAL = 0,
NJS_SCOPE_FUNCTION,
NJS_SCOPE_ARGUMENTS,
NJS_SCOPE_BLOCK
} njs_scope_t;

Expand Down
4 changes: 4 additions & 0 deletions src/test/njs_unit_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -19938,6 +19938,10 @@ static njs_unit_test_t njs_test[] =
"(async function() {f(await 111)})"),
njs_str("SyntaxError: await in arguments not supported in 1") },

{ njs_str("function f(a) {}"
"(async function() {f(f(1), await 111)})"),
njs_str("SyntaxError: await in arguments not supported in 1") },

{ njs_str("async () => [await x(1)(),]; async () => [await x(1)()]"),
njs_str("[object AsyncFunction]") },

Expand Down

0 comments on commit 4bc44a5

Please sign in to comment.