aufbau 0.1.2

Generalized prefix parsing for a class of context-dependent languages
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Structural views derived from parser state.

pub mod ast;
pub mod display;

#[cfg(test)]
mod tests;

pub use crate::logic::error::PrefixError;
pub use crate::logic::parse::State;
pub use ast::{FusionAST, FusionChild, FusionNode};