rukalang/mir/mod.rs
1//! MIR facade re-exported by the `rukalang` crate.
2//!
3//! The canonical, detailed MIR documentation lives in the `ruka_mir` crate:
4//! - source: `crates/ruka_mir/src/docs.md`
5//! - rustdoc: `ruka_mir` crate docs
6//!
7//! This module intentionally stays minimal to avoid duplicated documentation.
8
9pub use ruka_mir::*;
10
11/// HIR/check to MIR lowering wrappers.
12pub mod lower;