Whoops, missed allowing '+.'

This commit is contained in:
Tab Atkins-Bittner 2024-01-03 17:25:34 -08:00
parent 1f28fb0e83
commit 1d6809ee46
1 changed files with 1 additions and 1 deletions

View File

@ -699,7 +699,7 @@ string := identifier-string | quoted-string | raw-string
identifier-string := unambiguous-ident | signed-ident | dotted-ident
unambiguous-ident := ((identifier-char - digit - sign - '.') identifier-char*) - 'true' - 'false' - 'null'
signed-ident := sign ((identifier-char - digit - '.') identifier-char*)?
dotted-ident := '.' ((identifier-char - digit) identifier-char*)?
dotted-ident := sign? '.' ((identifier-char - digit) identifier-char*)?
identifier-char := unicode - line-space - [\\/(){};\[\]="#] - disallowed-literal-code-points
quoted-string := '"' (single-line-string-body | newline multi-line-string-body newline ws*) '"'