diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-05-15 17:49:24 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-05-15 17:49:24 +0200 |
| commit | 0273079fa0004f9f93ae96615f97934b832f8c51 (patch) | |
| tree | 07a2d68d856efc24e80d3c0b77dbc1dbb54d9d14 /grammar/complex-recursion.grm | |
| parent | f67e7524859f0b5462065a23c4334c97710f4f84 (diff) | |
minor optimization: add a first set to each rule variant
Diffstat (limited to 'grammar/complex-recursion.grm')
| -rw-r--r-- | grammar/complex-recursion.grm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/grammar/complex-recursion.grm b/grammar/complex-recursion.grm new file mode 100644 index 0000000..0daebe3 --- /dev/null +++ b/grammar/complex-recursion.grm @@ -0,0 +1 @@ +S -> 'a' | S S | S S S |