branch: externals/parser-generator commit 3657a685310a38c60a76897770aca1d1142ec3b5 Merge: 0a3f5f5 2481361 Author: Christian Johansson <christ...@cvj.se> Commit: Christian Johansson <christ...@cvj.se>
Merge branch 'master' of git.cvj.se:/home/git/emacs-parser-generator --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 67fc98c..d5d7b4f 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,8 @@ The idea of this plugin is to provide functions for various kinds of context-free grammar parser generations with support for syntax-directed-translations (SDT) and semantic actions (SA) and the possibility of exporting parsers and translators (as generated elisp code) to enable Emacs plugin-agnostic usage. This project is also about implementing algorithms described in the book `The Theory of Parsing, Translation and Compiling (Volume 1)` by `Alfred V. Aho and Jeffrey D. Ullman` (1972). [...] +At the moment it is possible to generate canonical LR(k) parsers using this library. + ## Lexical Analysis We use a regular-language based lexical analyzer that can be implemented by a finite-state-machine (FSM). Read more [here](docs/Lexical-Analysis.md).