1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 04:18:12 +00:00

LibJS: Allow escaped 'async' as identifier

Since 'async' is only special if it occurs before a function it can be
used as escaped identifier in all cases.
This commit is contained in:
davidot 2021-11-26 23:25:10 +01:00 committed by Linus Groh
parent e751dcea43
commit c57721cf83
2 changed files with 19 additions and 9 deletions

View file

@ -596,13 +596,15 @@ bool Parser::match_invalid_escaped_keyword() const
if (m_state.current_token.type() != TokenType::EscapedKeyword)
return false;
auto token_value = m_state.current_token.value();
if (token_value == "await"sv) {
return m_program_type == Program::Type::Module;
}
if (m_state.strict_mode) {
if (token_value == "await"sv)
return m_program_type == Program::Type::Module || m_state.in_async_function_context;
if (token_value == "async"sv)
return false;
if (token_value == "yield"sv)
return m_state.in_generator_function_context;
if (m_state.strict_mode)
return true;
}
return token_value != "yield"sv && token_value != "let"sv;
return token_value != "let"sv;
}
static constexpr AK::Array<StringView, 9> strict_reserved_words = { "implements", "interface", "let", "package", "private", "protected", "public", "static", "yield" };
@ -1230,7 +1232,7 @@ Parser::PrimaryExpressionParseResult Parser::parse_primary_expression()
syntax_error("'super' keyword unexpected here");
return { create_ast_node<SuperExpression>({ m_state.current_token.filename(), rule_start.position(), position() }) };
case TokenType::EscapedKeyword:
if (m_state.strict_mode || (m_state.current_token.value() != "let"sv && (m_state.in_generator_function_context || m_state.current_token.value() != "yield"sv) && (m_state.in_async_function_context || m_state.current_token.value() != "await"sv)))
if (match_invalid_escaped_keyword())
syntax_error("Keyword must not contain escaped characters");
[[fallthrough]];
case TokenType::Identifier: {