tinymist-analysis 0.14.14

Typst Static Analyzers for Tinymist.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Analyzing the syntax of a source file.
//!
//! This module must hide all **AST details** from the rest of the codebase.

pub mod import;
pub use import::*;
pub mod comment;
pub use comment::*;
pub mod matcher;
pub use matcher::*;

pub mod def;
pub use def::*;
pub(crate) mod repr;
use repr::*;