Simplify IdentifierName processing

This commit is contained in:
Matt Sherman 2023-10-03 19:45:20 -04:00
parent f331099c64
commit f0a6045ca0
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ Identifier
IdentifierName
= first:IdentifierStart rest:IdentifierPart* {
return first + rest.join( '' );
return text();
}
IdentifierStart