identifiers should never look like numbers

This commit is contained in:
Kat Marchán 2021-08-24 08:30:05 -07:00 committed by GitHub
parent 5883435297
commit 70867adec4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -311,7 +311,7 @@ node-space := ws* escline ws* | ws+
node-terminator := single-line-comment | newline | ';' | eof
identifier := string | bare-identifier
bare-identifier := (identifier-char - digit) identifier-char*
bare-identifier := (identifier-char - digit - sign) identifier-char*
identifier-char := unicode - linespace - [\{}<>;[]=,"]
prop := identifier '=' value
value := string | number | boolean | 'null'