allium_parser/lib.rs
1pub mod analysis;
2pub mod ast;
3pub mod diagnostic;
4pub mod lexer;
5pub mod parser;
6pub mod span;
7
8pub use analysis::{
9 analyze, analyze_with_cross_module, analyze_with_external_refs, analyse,
10 analyse_with_cross_module, analyse_with_external_refs, collect_qualified_references,
11};
12pub use ast::Module;
13pub use diagnostic::{AnalyseResult, Diagnostic, Finding};
14pub use parser::{parse, ParseResult};
15pub use span::Span;