sipha 3.0.0

PEG parser, syntax trees, and code generation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Syntax tree types and utilities (green/red trees, trivia, display).

pub mod ast;
pub mod emit;
pub mod green;
pub mod green_builder;
pub mod red;
pub mod sexp;
pub mod transform;
pub mod tree_display;
pub mod trivia;
pub mod walk;