summary refs log tree commit diff
path: root/compiler/rustc_mir_build/src/thir/mod.rs
blob: e5123d8ef0c997e972d34768e5be1689b8546157 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! The MIR is built from some typed high-level IR
//! (THIR). This section defines the THIR along with a trait for
//! accessing it. The intention is to allow MIR construction to be
//! unit-tested and separated from the Rust source and compiler data
//! structures.

crate mod constant;

crate mod cx;

crate mod pattern;

mod util;
pub mod visit;