Span trace utilities and runner source hint

This commit is contained in:
nyash-codex
2025-11-24 14:17:02 +09:00
parent 3154903121
commit 466e636af6
106 changed files with 4597 additions and 958 deletions

6
src/mir/loop_form.rs Normal file
View File

@ -0,0 +1,6 @@
//! LoopForm helper alias
//!
//! Alias to ControlForm::LoopShape so generic JoinIR lowering can depend on a
//! stable loop shape representation without pulling in builder details.
pub type LoopForm = crate::mir::control_form::LoopShape;