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
/// Central registry of all named elements in a SysML/KerML model
mod lookup;
mod scope;
mod symbol;
mod table;

pub use scope::{Import, Scope};
pub use symbol::{Symbol, SymbolId};
pub use table::SymbolTable;

#[cfg(test)]
mod tests;