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
15
16
17
18
pub mod chumsky_ext;
pub mod derive;
pub mod engine;
mod error;
pub mod incremental;
mod util;

#[cfg(feature = "derive")]
pub use inktree_derive::SyntaxGenerator;

pub use chumsky;
pub use cstree;

pub use derive::*;
pub use error::Errors;

pub use derive::language::Parseable;
pub use derive::language::Syntax;