1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
//! `lang-util` is a crate that implements utilities to parse and represent syntax trees using
//! `lalrpop` and `logos`.

#![deny(missing_docs)]

pub use lang_util_derive::{NodeContent, Token};

pub mod error;
pub use error::Token;

pub mod node;
pub use node::NodeContent;

pub mod position;