2025-12-05 20:45:23 +09:00
|
|
|
//! JoinIR integration for control flow
|
|
|
|
|
//!
|
|
|
|
|
//! This module contains JoinIR-related control flow logic:
|
|
|
|
|
//! - Pattern lowerers (patterns/)
|
2025-12-05 20:48:31 +09:00
|
|
|
//! - Routing logic (routing.rs) ✅
|
2025-12-05 20:45:23 +09:00
|
|
|
|
|
|
|
|
pub(in crate::mir::builder) mod patterns;
|
2025-12-05 20:48:31 +09:00
|
|
|
pub(in crate::mir::builder) mod routing;
|