Rust · 277 bytes Raw Blame History
1 //! Semantic analysis.
2 //!
3 //! Symbol tables, scoping, type checking, module resolution,
4 //! interface validation, and standard conformance checks.
5
6 pub mod amod;
7 pub mod intrinsic_modules;
8 pub mod resolve;
9 pub mod symtab;
10 pub mod type_layout;
11 pub mod types;
12 pub mod validate;
13