mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 23:38:38 +09:00
1337143 - Tweak NamedImports parsing to eliminate a complexifying peekToken where getToken could be used.
This commit is contained in:
parent
26cafc58b3
commit
bd6ebc2ffe
1 changed files with 13 additions and 9 deletions
|
|
@ -4663,12 +4663,11 @@ bool
|
|||
Parser<FullParseHandler>::namedImportsOrNamespaceImport(TokenKind tt, Node importSpecSet)
|
||||
{
|
||||
if (tt == TOK_LC) {
|
||||
TokenStream::Modifier modifier = TokenStream::KeywordIsName;
|
||||
while (true) {
|
||||
// Handle the forms |import {} from 'a'| and
|
||||
// |import { ..., } from 'a'| (where ... is non empty), by
|
||||
// escaping the loop early if the next token is }.
|
||||
if (!tokenStream.peekToken(&tt, TokenStream::KeywordIsName))
|
||||
if (!tokenStream.getToken(&tt, TokenStream::KeywordIsName))
|
||||
return false;
|
||||
|
||||
if (tt == TOK_RC)
|
||||
|
|
@ -4677,7 +4676,11 @@ Parser<FullParseHandler>::namedImportsOrNamespaceImport(TokenKind tt, Node impor
|
|||
// If the next token is a keyword, the previous call to
|
||||
// peekToken matched it as a TOK_NAME, and put it in the
|
||||
// lookahead buffer, so this call will match keywords as well.
|
||||
MUST_MATCH_TOKEN_MOD(TOK_NAME, TokenStream::KeywordIsName, JSMSG_NO_IMPORT_NAME);
|
||||
if (tt != TOK_NAME) {
|
||||
error(JSMSG_NO_IMPORT_NAME);
|
||||
return false;
|
||||
}
|
||||
|
||||
Rooted<PropertyName*> importName(context, tokenStream.currentName());
|
||||
TokenPos importNamePos = pos();
|
||||
|
||||
|
|
@ -4735,17 +4738,18 @@ Parser<FullParseHandler>::namedImportsOrNamespaceImport(TokenKind tt, Node impor
|
|||
|
||||
handler.addList(importSpecSet, importSpec);
|
||||
|
||||
bool matched;
|
||||
if (!tokenStream.matchToken(&matched, TOK_COMMA))
|
||||
TokenKind next;
|
||||
if (!tokenStream.getToken(&next))
|
||||
return false;
|
||||
|
||||
if (!matched) {
|
||||
modifier = TokenStream::None;
|
||||
if (next == TOK_RC)
|
||||
break;
|
||||
|
||||
if (next != TOK_COMMA) {
|
||||
error(JSMSG_RC_AFTER_IMPORT_SPEC_LIST);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
MUST_MATCH_TOKEN_MOD(TOK_RC, modifier, JSMSG_RC_AFTER_IMPORT_SPEC_LIST);
|
||||
} else {
|
||||
MOZ_ASSERT(tt == TOK_MUL);
|
||||
if (!tokenStream.getToken(&tt))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue