tinymist_query/syntax/
mod.rs

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

#![allow(missing_docs)]

pub(crate) mod docs;
pub(crate) mod expr;
pub(crate) mod index;
pub(crate) mod lexical_hierarchy;
pub(crate) mod module;

pub(crate) use docs::*;
pub use expr::*;
pub use index::*;
pub use lexical_hierarchy::*;
pub use module::*;
pub use tinymist_analysis::syntax::*;