diff options
author | Mattias Andrée <maandree@kth.se> | 2021-04-17 22:55:49 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-04-17 22:55:49 +0200 |
commit | 92db371a09f2c887313589e0cce4a08921f455ba (patch) | |
tree | 287379c97e129cf17f81689a6e5e5d0393debeff | |
parent | m (diff) | |
download | libparser-92db371a09f2c887313589e0cce4a08921f455ba.tar.gz libparser-92db371a09f2c887313589e0cce4a08921f455ba.tar.bz2 libparser-92db371a09f2c887313589e0cce4a08921f455ba.tar.xz |
readme: no left recursion
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r-- | README | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -120,3 +120,7 @@ EXTENDED DESCRIPTION Rules that begin with an underscore will not show up for the application in the parse result, the rest of the rules will appear in the tree-formatted result. + + Left recursion is illegal (it will cause stack overflow at + runtime as the empty condition before the recursion is always + met). |