syster-base 0.2.0-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
pub mod file_loader;
pub mod stdlib_loader;
pub mod workspace_loader;

pub use stdlib_loader::StdLibLoader;
pub use workspace_loader::WorkspaceLoader;

// Re-export parse types from core for backwards compatibility
pub use crate::core::{ParseError, ParseErrorKind, ParseResult};

// Re-export language parsing convenience function
pub use crate::syntax::parser::parse_with_result;