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::*;