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
mod element;
mod language;
mod macros;
mod parseable;
pub mod rule_graph;
mod syntax;

pub use parseable::Parseable;
pub use syntax::Syntax;

pub(crate) use element::*;
pub use language::*;