aboutsummaryrefslogtreecommitdiff
path: root/re.html
diff options
context:
space:
mode:
Diffstat (limited to 're.html')
-rw-r--r--re.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/re.html b/re.html
index ad60d50..24a582a 100644
--- a/re.html
+++ b/re.html
@@ -423,6 +423,7 @@ primary <- '(' exp ')' / string / class / defined
423 / '=' name 423 / '=' name
424 / '{}' 424 / '{}'
425 / '{~' exp '~}' 425 / '{~' exp '~}'
426 / '{|' exp '|}'
426 / '{' exp '}' 427 / '{' exp '}'
427 / '.' 428 / '.'
428 / name S !arrow 429 / name S !arrow
@@ -436,7 +437,7 @@ item <- defined / range / .
436range <- . '-' [^]] 437range <- . '-' [^]]
437 438
438S <- (%s / '--' [^%nl]*)* -- spaces and comments 439S <- (%s / '--' [^%nl]*)* -- spaces and comments
439name <- [A-Za-z][A-Za-z0-9_]* 440name <- [A-Za-z_][A-Za-z0-9_]*
440arrow <- '<-' 441arrow <- '<-'
441num <- [0-9]+ 442num <- [0-9]+
442string <- '"' [^"]* '"' / "'" [^']* "'" 443string <- '"' [^"]* '"' / "'" [^']* "'"