rustc_mir_build/thir/
mod.rs

1//! The MIR is built from some typed high-level IR
2//! (THIR). This section defines the THIR along with a trait for
3//! accessing it. The intention is to allow MIR construction to be
4//! unit-tested and separated from the Rust source and compiler data
5//! structures.
6
7pub(crate) mod constant;
8pub(crate) mod cx;
9pub(crate) mod pattern;
10pub mod print;
11mod util;