syster-base 0.1.11-alpha

Core library for SysML v2 and KerML parsing, AST, and semantic analysis
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod constants;
pub mod enums;
pub mod parsers;
pub mod types;
pub mod utils;

pub use constants::*;
pub use enums::*;
pub use types::*;

// Re-export parsers
pub use parsers::{
    ParseError, parse_alias, parse_comment, parse_definition, parse_element, parse_file,
    parse_import, parse_package, parse_usage,
};

#[cfg(test)]
mod tests;