# LALRPOP LALRPOP is a Rust parser generator framework with *usability* as its primary goal. You should be able to write compact, DRY, readable grammars. To this end, LALRPOP offers a number of nifty features: 1. Macros that let you extract common parts of your grammar. This means you can go beyond simple repetition like `Id*` and define things like `Comma` for a comma-separated list of identifiers. 2. Macros can also create subsets, so that you easily do something like `Expr<"all">` to represent the full range of expressions, but `Expr<"if">` to represent the subset of expressions that can appear in an `if` expression. 3. Builtin support for operators like `*` and `?`. 4. Compact defaults so that you can avoid writing action code much of the time. 5. Type inference so you can often omit the types of nonterminals. Despite its name, LALRPOP in fact uses LR(1) by default (though you can opt for LALR(1)), and really I hope to eventually move to something general that can handle all CFGs (like GLL, GLR, LL(\*), etc). ### Documentation There is a [tutorial available here](doc/tutorial.md) that covers a fair bit of the features of LALRPOP. For the more advanced things are not yet covered, it also points you to tests that may help give you the idea. I plan eventually to build up a reference manual in the Wiki, but that's not even started. ### Obligatory disclaimer LALRPOP is still in its relatively early days. Not all the features I want are there, and the error messages are sometimes a bit opaque. But it's quite powerful already. It's also [self-hosting], which is fun. [self-hosting]: https://github.com/nikomatsakis/lalrpop/blob/master/lalrpop/src/parser/lrgrammar.lalrpop ### Cargo cheat sheet This section is for if you already know what you're doing and just want to copy-and-paste some code for adding LALRPOP to your Cargo project. To enable LALRPOP, add the following lines to your `Cargo.toml`: ``` [package] ... build = "build.rs" # LALRPOP preprocessing # Add a dependency on the LALRPOP runtime library: [dependencies.lalrpop-util] version = "0.5.0" [build-dependencies.lalrpop] version = "0.5.0" ``` And create a `build.rs` file that looks like: ```rust extern crate lalrpop; fn main() { lalrpop::process_root().unwrap(); } ``` (If you already have a `build.rs` file, you should be able to just call `process_root` in addition to whatever else that file is doing.) That's it!