pub mod adapters;
pub mod graphs;
pub mod processors;
pub mod resolver;
pub mod symbol_table;
pub mod types;
pub mod workspace;
pub use adapters::{
SysmlAdapter, extract_folding_ranges, extract_inlay_hints, find_selection_spans,
populate_syntax_file,
};
pub use graphs::ReferenceIndex;
pub use resolver::{
Resolver, extract_imports, extract_kerml_imports, is_wildcard_import, parse_import_path,
};
pub use symbol_table::SymbolTable;
pub use types::FoldingRangeInfo;
pub use types::TokenType;
pub use types::{
DependencyEvent, Diagnostic, Location as DiagnosticLocation, Location, Position, Range,
SemanticError, SemanticErrorKind, SemanticResult, SemanticRole, Severity, SymbolTableEvent,
WorkspaceEvent,
};
pub use types::{InlayHint, InlayHintKind};
pub use types::{normalize_path, normalize_pathbuf};
pub use workspace::{ParsedFile, Workspace};
pub type SyntaxWorkspace = Workspace<crate::syntax::SyntaxFile>;
pub type QualifiedName = String;
pub type SimpleName = String;
pub type ScopeId = usize;
pub type SourceFilePath = String;