///
/// Module with grammar transformations to canonicalize grammar.
/// This is actually the transformation from an EBNF like structure to a BNF like structure.
///
pub use transform_productions;
///
/// Module with left-factoring functionality
///
pub use left_factor;
/// Module that handles the augmentation of the grammar with a new start symbol for LR parsing
pub use augment_grammar;