forgot eof

This commit is contained in:
Kat Marchán 2020-12-18 19:31:44 -08:00
parent b2a4610742
commit 42672c1701
No known key found for this signature in database
GPG Key ID: AEB529C08A3C7E9E
1 changed files with 1 additions and 1 deletions

View File

@ -298,7 +298,7 @@ node := ('/-' ws*)? identifier (node-space node-props-and-args)* (node-terminato
node-props-and-args := ('/-' ws*)? (prop | value)
node-children := ('/-' ws*)? '{' nodes '}'
node-space := ws* escline ws* | ws+
node-terminator := single-line-comment | newline | ';'
node-terminator := single-line-comment | newline | ';' | eof
identifier := (identifier-char - digit - [<>]) identifier-char* | string
identifier-char := unicode - digit - linespace - [\{}<>;[]=,]