syster-base 0.1.12-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
// Syntax definitions for supported languages
pub mod file;
pub mod formatter;
pub mod kerml;
pub mod parser;
pub mod sysml;

pub use file::SyntaxFile;
pub use formatter::{FormatOptions, format_async};

#[cfg(test)]
mod tests;