syster-base 0.1.10-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 error_codes;
pub mod events;
pub mod file_io;
pub mod interner;
pub mod operation;
pub mod parse_result;
pub mod span;
pub mod text_utils;
pub mod traits;

pub use file_io::{get_extension, load_file, validate_extension};
pub use interner::{IStr, Interner};
pub use parse_result::{ParseError, ParseErrorKind, ParseResult};
pub use span::*;

#[cfg(test)]
mod tests;