blob: d3a7d4ef54d2dc329a240dbc93dcc0f0c1cc9346 [file] [log] [blame]
== test ==
fun test(b: Boolean) {
for (i in 1..10) {
if (b) break;
continue;
}
}
---------------------
<v0>: Boolean NEW: magic[FAKE_INITIALIZER](b: Boolean) -> <v0>
<v7>: Int NEW: magic[LOOP_RANGE_ITERATION](1..10|<v6>) -> <v7>
1 <v1>: Int NEW: r(1) -> <v1>
10 <v2>: Int NEW: r(10) -> <v2>
1..10 <v6>: {<: Iterable<Int>} NEW: call(1..10, next) -> <v6>
b <v8>: Boolean NEW: r(b) -> <v8>
break !<v9>: *
if (b) break <v10>: * NEW: merge(if (b) break|!<v9>) -> <v10>
continue !<v11>: *
{ if (b) break; continue; } !<v11>: * COPY
for (i in 1..10) { if (b) break; continue; } !<v12>: *
{ for (i in 1..10) { if (b) break; continue; } } !<v12>: * COPY
=====================