summaryrefslogtreecommitdiffstats
path: root/development/kelbt/README
diff options
context:
space:
mode:
author Matteo Bernardini2012-09-07 21:24:38 +0200
committer Robby Workman2012-09-09 00:28:31 +0200
commitb302d4393c1cae5a4aaaba583983ccd50d1b02df (patch)
treea8434f2309e767584a643c680d688370b6e9b808 /development/kelbt/README
parentdd2c89f0203f6c8b0259bb1a48102a89c16e8df2 (diff)
downloadslackbuilds-b302d4393c1cae5a4aaaba583983ccd50d1b02df.tar.gz
development/kelbt: Added (Backtracking LR Parsing).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'development/kelbt/README')
-rw-r--r--development/kelbt/README7
1 files changed, 7 insertions, 0 deletions
diff --git a/development/kelbt/README b/development/kelbt/README
new file mode 100644
index 0000000000..a110ea556c
--- /dev/null
+++ b/development/kelbt/README
@@ -0,0 +1,7 @@
+kelbt (Backtracking LR Parsing)
+
+Kelbt generates backtracking LALR(1) parsers. Where traditional
+LALR(1) parser generators require static resolution of shift/reduce
+conflicts, Kelbt generates parsers that handle conflicts by
+backtracking at runtime. Kelbt is able to generate a parser for any
+context-free grammar that is free of hidden left recursion.