blob: ca26cc13b5e877944c04280137c37dfbbb6541b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//! 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.
pub(crate) mod constant;
pub(crate) mod cx;
pub(crate) mod pattern;
pub(crate) mod print;
mod util;
|