tinymist_analysis/syntax.rs
1//! Analyzing the syntax of a source file.
2//!
3//! This module must hide all **AST details** from the rest of the codebase.
4
5pub mod import;
6pub use import::*;
7pub mod comment;
8pub use comment::*;
9pub mod matcher;
10pub use matcher::*;
11
12pub mod def;
13pub use def::*;
14pub(crate) mod repr;
15use repr::*;