diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2012-09-07 21:24:38 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-09-08 17:28:31 -0500 |
commit | b302d4393c1cae5a4aaaba583983ccd50d1b02df (patch) | |
tree | a8434f2309e767584a643c680d688370b6e9b808 /development/kelbt/README | |
parent | dd2c89f0203f6c8b0259bb1a48102a89c16e8df2 (diff) | |
download | slackbuilds-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/README | 7 |
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. |