1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//! # syster-base
//!
//! Core library for SysML v2 and KerML parsing, AST, and semantic analysis.
//!
//! ## Module Structure (dependency order)
//!
//! ```text
//! ide → IDE features (completion, hover, goto-def)
//! ↓
//! hir → Semantic model with Salsa queries
//! ↓
//! project → Workspace loading, stdlib resolution
//! ↓
//! syntax → AST types, Span/Position, ParseError/ParseResult
//! ↓
//! parser → Logos lexer, recursive-descent parser, grammar traits
//! ↓
//! base → Primitives (FileId, Name interning, TextRange)
//! ```
// ============================================================================
// MODULES (dependency order: base → parser → syntax → project → hir → ide)
// ============================================================================
/// Foundation types: FileId, Name interning, TextRange
/// Parser: Logos lexer, recursive-descent parser, grammar traits
/// Syntax: AST types, Span/Position, ParseError/ParseResult
/// High-level IR: Salsa-based semantic model
/// IDE features: completion, hover, goto-definition, find-references
/// Project management: workspace loading, stdlib
/// Model interchange formats: XMI, KPAR, JSON-LD
// Re-export commonly needed items
pub use keywords;
// Re-export foundation types
pub use ;