2020-07-21 09:09:27 +00:00
|
|
|
//! The MIR is built from some typed high-level IR
|
|
|
|
|
//! (THIR). This section defines the THIR along with a trait for
|
2015-08-18 17:59:21 -04:00
|
|
|
//! accessing it. The intention is to allow MIR construction to be
|
|
|
|
|
//! unit-tested and separated from the Rust source and compiler data
|
|
|
|
|
//! structures.
|
|
|
|
|
|
2020-01-11 15:22:36 +13:00
|
|
|
crate mod constant;
|
2021-03-07 15:09:00 +01:00
|
|
|
|
2020-01-05 15:46:44 +00:00
|
|
|
crate mod cx;
|
2015-08-18 17:59:21 -04:00
|
|
|
|
2020-01-05 15:46:44 +00:00
|
|
|
crate mod pattern;
|
2016-09-24 17:45:24 +03:00
|
|
|
|
2018-10-02 11:00:57 -04:00
|
|
|
mod util;
|