We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fbf0ba commit c13969eCopy full SHA for c13969e
deps/v8/src/parsing/parser.cc
@@ -1378,16 +1378,8 @@ ImportAssertions* Parser::ParseImportAssertClause() {
1378
Expect(Token::LBRACE);
1379
1380
while (peek() != Token::RBRACE) {
1381
- const AstRawString* attribute_key = nullptr;
1382
- if (Check(Token::STRING) || Check(Token::SMI)) {
1383
- attribute_key = GetSymbol();
1384
- } else if (Check(Token::NUMBER)) {
1385
- attribute_key = GetNumberAsSymbol();
1386
- } else if (Check(Token::BIGINT)) {
1387
- attribute_key = GetBigIntAsSymbol();
1388
- } else {
1389
- attribute_key = ParsePropertyName();
1390
- }
+ const AstRawString* attribute_key =
+ Check(Token::STRING) ? GetSymbol() : ParsePropertyName();
1391
1392
Scanner::Location location = scanner()->location();
1393
0 commit comments