allium-parser 3.2.0

Parser and structural validator for the Allium specification language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod analysis;
pub mod ast;
pub mod diagnostic;
pub mod lexer;
pub mod parser;
pub mod span;

pub use analysis::{analyze, analyse};
pub use ast::Module;
pub use diagnostic::{AnalyseResult, Diagnostic, Finding};
pub use parser::{parse, ParseResult};
pub use span::Span;