branch: externals/parser-generator commit 85dde5128279408f5371d532a929067e52a27866 Author: Christian Johansson <christ...@cvj.se> Commit: Christian Johansson <christ...@cvj.se>
Added License and Travis build logos --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index e34f3ad..584a450 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,12 @@ # Emacs Parser +[](https://www.gnu.org/licenses/gpl-3.0.txt) +[](https://travis-ci.org/cjohansson/emacs-parser) + The idea of this plugin is to provide functions for various kinds of context-free grammar parsing with support for syntax-directed-translations (SDT) and semantic-actions. This project is 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). Also this project is about me learning how to parse languages. +This is just started, so most stuff are WIP. + ## Lexical Analysis We use a regular-language based lexical analyzer that can be implemented by a finite-state-machine (FSM).