mirror of
https://github.com/typst/typst
synced 2025-05-14 04:56:26 +08:00
Splits up into: - escaping: resolving of escape sequences - parser: the parsing code - tests: all integrated parsing tests Also moves Ident from the root syntax module into the tree module.
10 lines
122 B
Rust
10 lines
122 B
Rust
//! Parsing of source code into syntax trees.
|
|
|
|
mod escaping;
|
|
mod parser;
|
|
|
|
pub use parser::parse;
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|