camxes-rs 0.2.0

A Parsing Expression Grammar (PEG) parser generator with enhanced error reporting and semantic actions
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod grammar;
pub mod parsing;
pub mod rule;
pub mod semantic;
pub mod transformer;

pub use semantic::{
    downcast_ref, fold_parse_forest, parse_with_semantics, single_root, span_slice, DynVal,
    ReducerTable, SemanticNode, SemanticReducer,
};