allium-parser 3.0.5

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;
pub use ast::Module;
pub use diagnostic::Diagnostic;
pub use parser::{parse, ParseResult};
pub use span::Span;