1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
///
/// Module with attributes used at certain items of a grammar.
///
pub mod attributes;
pub use attributes::{Decorate, ProductionAttribute, SymbolAttribute};

/// Module with the context-free grammar types
pub mod cfg;
pub use cfg::Cfg;

/// Module with a grammar position type
pub mod pos;
pub use pos::Pos;

/// Module with types related to grammar productions
pub mod production;
pub use production::{Pr, Rhs};

pub(crate) mod symbol_string;

/// Module with symbol types
pub mod symbol;
pub use symbol::{Symbol, Terminal, TerminalKind};