typst/src/syntax/mod.rs

14 lines
192 B
Rust

//! Syntax trees, parsing and tokenization.
#[cfg(test)]
#[macro_use]
mod test;
pub mod decoration;
pub mod expr;
pub mod parsing;
pub mod scope;
pub mod span;
pub mod tokens;
pub mod tree;