utterance 0.1.2

A parser library for creating readable, natural-language-inspired domain-specific languages.
Documentation
1
2
3
4
5
6
7
8
9
mod child;
mod context;
mod core;
mod factory;

pub(crate) use child::Child;
pub(crate) use context::ParseContext;
pub use core::{ParseTree, TreeFn, expect_words, merge_trees, noop_fn};
pub use factory::ParseTreeFactory;