#lalr-parser #context-free-grammar #lalr #parser

lalry

a library for creating LALR(1) parsers from context-free grammars

1 unstable release

Uses old Rust 2015

0.1.0 Jun 8, 2024

#117 in Parser tooling

Download history 200/week @ 2024-06-05 55/week @ 2024-06-12 127/week @ 2024-06-19 69/week @ 2024-06-26 79/week @ 2024-07-03 74/week @ 2024-07-10 77/week @ 2024-07-17 105/week @ 2024-07-24 86/week @ 2024-07-31 125/week @ 2024-08-07 108/week @ 2024-08-14 115/week @ 2024-08-21 135/week @ 2024-08-28

506 downloads per month
Used in 10 crates (via parol)

MIT/Apache

55KB
1K SLoC

lalry - a library for creating LALR(1) parsers from context-free grammars

This is a fork of the great lalr crate, a library for creating LALR(1) parsers from context-free grammars.

Additions to lalr

To make the generation of parse tables more flexible lalry adds a way to control this process. The trait Config is used for this and a custom implementation can be provided to deviate from the default. To keep the default behavior as in previous versions the user can use the DefaultConfig structure that provides the implementation of the standard behavior.

Properties of lalry

lalry, although not the main goal, is functionally fully compatible with it's ancestor lalr. It can be used as drop-in replacement with only minor adaptions.

All you need to do is to create a DefaultConfig and hand it over to the call to lalr1:

let config = DefaultConfig::new();
let parse_table = grammar.lalr1(&config).unwrap();

By using a default configuration you get the exact same functionality as if you had called

let parse_table = grammar.lalr1(|_, _| true, |_, _| 0).unwrap();

with lalr style API.

No runtime deps