#parser #generator #lr #yacc #grammar

build lalrpop-snap

convenient LR(1) parser generator

26 releases (15 breaking)

Uses old Rust 2015

0.16.0 Sep 3, 2018
0.15.2 May 3, 2018
0.15.1 Apr 5, 2018
0.15.0 Mar 22, 2018
0.2.0 Jul 27, 2015

#134 in Parser tooling

Download history 773/week @ 2023-10-17 762/week @ 2023-10-24 689/week @ 2023-10-31 793/week @ 2023-11-07 597/week @ 2023-11-14 739/week @ 2023-11-21 672/week @ 2023-11-28 535/week @ 2023-12-05 647/week @ 2023-12-12 697/week @ 2023-12-19 643/week @ 2023-12-26 481/week @ 2024-01-02 684/week @ 2024-01-09 639/week @ 2024-01-16 490/week @ 2024-01-23 472/week @ 2024-01-30

2,373 downloads per month

Apache-2.0/MIT

4.5MB
102K SLoC

LALRPOP

Join the chat at https://gitter.im/lalrpop/Lobby

Build status

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. Nice error messages in case parser constructor fails.
  2. 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<Id> for a comma-separated list of identifiers.
  3. 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.
  4. Builtin support for operators like * and ?.
  5. Compact defaults so that you can avoid writing action code much of the time.
  6. 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

The LALRPOP book covers all things LALRPOP -- or at least it intends to! Here are some tips:

  • The tutorial covers the basics of setting up a LALRPOP parser.
  • For the impatient, you may prefer the quick start guide section, which describes how to add LALRPOP to your Cargo.toml.
  • The advanced setup chapter shows how to configure other aspects of LALRPOP's preprocessing.

Example Uses

  • LALRPOP is itself implemented in LALRPOP.
  • Gluon is a statically typed functional programming language.

Dependencies

~4–5.5MB
~101K SLoC