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_all_referenced_idents,
11 collect_declared_names, collect_qualified_references,
12};
13pub use ast::Module;
14pub use diagnostic::{AnalyseResult, Diagnostic, Finding};
15pub use parser::{parse, ParseResult};
16pub use span::Span;