Skip to main content

tsz_binder/modules/
mod.rs

1//! Module, namespace, and import/export binding.
2//!
3//! Groups all module-related binder logic:
4//! - `binding` — module/namespace declaration binding, augmentation, export population
5//! - `import_export` — import/export declaration binding and symbol resolution
6//! - `resolution_debug` — debugging infrastructure for module resolution
7
8mod binding;
9mod import_export;
10pub mod resolution_debug;