slang_frontend/semantic_analysis/analyzer_modules/
mod.rs

1pub mod core;
2pub mod native_functions;
3pub mod scope_manager;
4pub mod symbol_resolver; // Ensure this module is declared
5
6// Re-export the main analyzer for backward compatibility
7pub use core::CoreAnalyzer;