grammar-utils 0.2.0

A library for working with context-free grammars.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(test)]
mod tests;

pub mod ll1;
pub mod lr0;
pub mod lr1;

mod macros;
mod grammar;
mod analysis;

pub use grammar::{Grammar, Rule, Symbol, RuleIndex, SymbolIndex};
pub use analysis::GrammarAnalysis;