Skip to content

Commit 53421d5

Browse files
authored
allow long-form Unicode escape sequence (#1114)
1 parent 8c5e008 commit 53421d5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

standard/lexical-structure.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -441,8 +441,9 @@ fragment Identifier_Start_Character
441441
;
442442
443443
fragment Underscore_Character
444-
: '_' // underscore
445-
| '\\u005' [fF] // Unicode_Escape_Sequence for underscore
444+
: '_' // underscore
445+
| '\\u005' [fF] // Unicode_Escape_Sequence for underscore
446+
| '\\U0000005' [fF] // Unicode_Escape_Sequence for underscore
446447
;
447448
448449
fragment Identifier_Part_Character

0 commit comments

Comments
 (0)