== test == fun test(b: Boolean) { for (i in 1..10) { if (b) break; continue; } } --------------------- : Boolean NEW: magic[FAKE_INITIALIZER](b: Boolean) -> : Int NEW: magic[LOOP_RANGE_ITERATION](1..10|) -> 1 : Int NEW: r(1) -> 10 : Int NEW: r(10) -> 1..10 : {<: Iterable} NEW: call(1..10, next) -> b : Boolean NEW: r(b) -> break !: * if (b) break : * NEW: merge(if (b) break|!) -> continue !: * { if (b) break; continue; } !: * COPY for (i in 1..10) { if (b) break; continue; } !: * { for (i in 1..10) { if (b) break; continue; } } !: * COPY =====================