typst/src/syntax/mod.rs

17 lines
265 B
Rust

//! Syntax types.
mod expr;
mod ident;
mod node;
mod span;
mod token;
pub use expr::*;
pub use ident::*;
pub use node::*;
pub use span::*;
pub use token::*;
/// A collection of nodes which form a tree together with their children.
pub type Tree = SpanVec<Node>;