inktree 0.1.0

An incremental syntax tree engine for fast, expressive language tooling in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod allowed;
mod attributes;
mod node;
mod pratt;
mod rule;
mod static_token;
mod token;

pub use attributes::*;
pub use node::*;
pub use pratt::*;
pub(crate) use rule::*;
pub use static_token::*;
pub use token::*;