utterance 0.1.3

A parser library for creating readable, natural-language-inspired domain-specific languages.
Documentation
1
2
3
4
5
6
7
8
9
10
mod core;
mod error;
pub mod expectation;
pub mod graph;
mod match_frame;
pub mod tree;

pub use core::Parser;
pub use error::{CustomParseError, ParseError};
pub(crate) use match_frame::MatchFrame;