Phase 33 NORM canon test: enforce normalized dev route for P1/P2/JP mini

This commit is contained in:
nyash-codex
2025-12-11 20:54:33 +09:00
parent 59a985b7fa
commit af6f95cd4b
170 changed files with 4423 additions and 1897 deletions

View File

@ -48,13 +48,13 @@
pub mod simple_while;
pub mod with_break;
pub mod with_if_phi;
pub mod with_continue;
pub mod with_if_phi;
pub use simple_while::lower_simple_while_to_joinir;
pub use with_break::lower_loop_with_break_to_joinir;
pub use with_if_phi::lower_loop_with_conditional_phi_to_joinir;
pub use with_continue::lower_loop_with_continue_to_joinir;
pub use with_if_phi::lower_loop_with_conditional_phi_to_joinir;
// ============================================================================
// Helper Functions (Shared Utilities)
@ -76,7 +76,6 @@ pub use with_continue::lower_loop_with_continue_to_joinir;
#[cfg(test)]
mod tests {
// ========================================================================
// Pattern 1: Simple While Loop Tests