Raw FIR: eliminate range variable declaration in 'for' loops
This commit is contained in:
+1
-4
@@ -828,14 +828,11 @@ class ExpressionsConverter(
|
|||||||
|
|
||||||
return buildBlock {
|
return buildBlock {
|
||||||
source = forLoop.toFirSourceElement()
|
source = forLoop.toFirSourceElement()
|
||||||
val rangeVal =
|
|
||||||
generateTemporaryVariable(this@ExpressionsConverter.baseSession, null, Name.special("<range>"), rangeExpression)
|
|
||||||
statements += rangeVal
|
|
||||||
val iteratorVal = generateTemporaryVariable(
|
val iteratorVal = generateTemporaryVariable(
|
||||||
this@ExpressionsConverter.baseSession, null, Name.special("<iterator>"),
|
this@ExpressionsConverter.baseSession, null, Name.special("<iterator>"),
|
||||||
buildFunctionCall {
|
buildFunctionCall {
|
||||||
calleeReference = buildSimpleNamedReference { name = Name.identifier("iterator") }
|
calleeReference = buildSimpleNamedReference { name = Name.identifier("iterator") }
|
||||||
explicitReceiver = generateResolvedAccessExpression(null, rangeVal)
|
explicitReceiver = rangeExpression
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
statements += iteratorVal
|
statements += iteratorVal
|
||||||
|
|||||||
@@ -1243,15 +1243,12 @@ class RawFirBuilder(session: FirSession, val baseScopeProvider: FirScopeProvider
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun visitForExpression(expression: KtForExpression, data: Unit?): FirElement {
|
override fun visitForExpression(expression: KtForExpression, data: Unit?): FirElement {
|
||||||
val ktRangeExpression = expression.loopRange.toFirExpression("No range in for loop")
|
val rangeExpression = expression.loopRange.toFirExpression("No range in for loop")
|
||||||
val ktParameter = expression.loopParameter
|
val ktParameter = expression.loopParameter
|
||||||
val loopSource = expression.toFirSourceElement()
|
val loopSource = expression.toFirSourceElement()
|
||||||
return buildBlock {
|
return buildBlock {
|
||||||
source = loopSource
|
source = loopSource
|
||||||
val rangeSource = expression.loopRange?.toFirSourceElement()
|
val rangeSource = expression.loopRange?.toFirSourceElement()
|
||||||
val rangeVal =
|
|
||||||
generateTemporaryVariable(baseSession, rangeSource, Name.special("<range>"), ktRangeExpression)
|
|
||||||
statements += rangeVal
|
|
||||||
val iteratorVal = generateTemporaryVariable(
|
val iteratorVal = generateTemporaryVariable(
|
||||||
baseSession, rangeSource, Name.special("<iterator>"),
|
baseSession, rangeSource, Name.special("<iterator>"),
|
||||||
buildFunctionCall {
|
buildFunctionCall {
|
||||||
@@ -1260,7 +1257,7 @@ class RawFirBuilder(session: FirSession, val baseScopeProvider: FirScopeProvider
|
|||||||
source = loopSource
|
source = loopSource
|
||||||
name = Name.identifier("iterator")
|
name = Name.identifier("iterator")
|
||||||
}
|
}
|
||||||
explicitReceiver = generateResolvedAccessExpression(rangeSource, rangeVal)
|
explicitReceiver = rangeExpression
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
statements += iteratorVal
|
statements += iteratorVal
|
||||||
|
|||||||
@@ -4,6 +4,15 @@ fun foo() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun fooLabeled() {
|
||||||
|
println("!!!")
|
||||||
|
label@ for (i in 1..10) {
|
||||||
|
if (i == 5) continue@label
|
||||||
|
println(i)
|
||||||
|
}
|
||||||
|
println("!!!")
|
||||||
|
}
|
||||||
|
|
||||||
fun bar(list: List<String>) {
|
fun bar(list: List<String>) {
|
||||||
for (element in list.subList(0, 10)) {
|
for (element in list.subList(0, 10)) {
|
||||||
println(element)
|
println(element)
|
||||||
|
|||||||
+21
-10
@@ -1,23 +1,36 @@
|
|||||||
FILE: for.kt
|
FILE: for.kt
|
||||||
public? final? fun foo(): R|kotlin/Unit| {
|
public? final? fun foo(): R|kotlin/Unit| {
|
||||||
lval <range>: <implicit> = IntegerLiteral(1).rangeTo#(IntegerLiteral(10))
|
lval <iterator>: <implicit> = IntegerLiteral(1).rangeTo#(IntegerLiteral(10)).iterator#()
|
||||||
lval <iterator>: <implicit> = R|<local>/<range>|.iterator#()
|
|
||||||
while(R|<local>/<iterator>|.hasNext#()) {
|
while(R|<local>/<iterator>|.hasNext#()) {
|
||||||
lval i: <implicit> = R|<local>/<iterator>|.next#()
|
lval i: <implicit> = R|<local>/<iterator>|.next#()
|
||||||
println#(i#)
|
println#(i#)
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
public? final? fun fooLabeled(): R|kotlin/Unit| {
|
||||||
|
println#(String(!!!))
|
||||||
|
lval <iterator>: <implicit> = IntegerLiteral(1).rangeTo#(IntegerLiteral(10)).iterator#()
|
||||||
|
label@while(R|<local>/<iterator>|.hasNext#()) {
|
||||||
|
lval i: <implicit> = R|<local>/<iterator>|.next#()
|
||||||
|
when () {
|
||||||
|
==(i#, IntegerLiteral(5)) -> {
|
||||||
|
continue@@@[R|<local>/<iterator>|.hasNext#()]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
println#(i#)
|
||||||
|
}
|
||||||
|
|
||||||
|
println#(String(!!!))
|
||||||
|
}
|
||||||
public? final? fun bar(list: List<String>): R|kotlin/Unit| {
|
public? final? fun bar(list: List<String>): R|kotlin/Unit| {
|
||||||
lval <range>: <implicit> = list#.subList#(IntegerLiteral(0), IntegerLiteral(10))
|
lval <iterator>: <implicit> = list#.subList#(IntegerLiteral(0), IntegerLiteral(10)).iterator#()
|
||||||
lval <iterator>: <implicit> = R|<local>/<range>|.iterator#()
|
|
||||||
while(R|<local>/<iterator>|.hasNext#()) {
|
while(R|<local>/<iterator>|.hasNext#()) {
|
||||||
lval element: <implicit> = R|<local>/<iterator>|.next#()
|
lval element: <implicit> = R|<local>/<iterator>|.next#()
|
||||||
println#(element#)
|
println#(element#)
|
||||||
}
|
}
|
||||||
|
|
||||||
lval <range>: <implicit> = list#.subList#(IntegerLiteral(10), IntegerLiteral(20))
|
lval <iterator>: <implicit> = list#.subList#(IntegerLiteral(10), IntegerLiteral(20)).iterator#()
|
||||||
lval <iterator>: <implicit> = R|<local>/<range>|.iterator#()
|
|
||||||
while(R|<local>/<iterator>|.hasNext#()) {
|
while(R|<local>/<iterator>|.hasNext#()) {
|
||||||
lval element: <implicit> = R|<local>/<iterator>|.next#()
|
lval element: <implicit> = R|<local>/<iterator>|.next#()
|
||||||
println#(element#)
|
println#(element#)
|
||||||
@@ -48,8 +61,7 @@ FILE: for.kt
|
|||||||
|
|
||||||
}
|
}
|
||||||
public? final? fun baz(set: Set<Some>): R|kotlin/Unit| {
|
public? final? fun baz(set: Set<Some>): R|kotlin/Unit| {
|
||||||
lval <range>: <implicit> = set#
|
lval <iterator>: <implicit> = set#.iterator#()
|
||||||
lval <iterator>: <implicit> = R|<local>/<range>|.iterator#()
|
|
||||||
while(R|<local>/<iterator>|.hasNext#()) {
|
while(R|<local>/<iterator>|.hasNext#()) {
|
||||||
lval <destruct>: <implicit> = R|<local>/<iterator>|.next#()
|
lval <destruct>: <implicit> = R|<local>/<iterator>|.next#()
|
||||||
lval x: <implicit> = R|<local>/<destruct>|.component1()
|
lval x: <implicit> = R|<local>/<destruct>|.component1()
|
||||||
@@ -59,8 +71,7 @@ FILE: for.kt
|
|||||||
|
|
||||||
}
|
}
|
||||||
public? final? fun withParameter(list: List<Some>): R|kotlin/Unit| {
|
public? final? fun withParameter(list: List<Some>): R|kotlin/Unit| {
|
||||||
lval <range>: <implicit> = list#
|
lval <iterator>: <implicit> = list#.iterator#()
|
||||||
lval <iterator>: <implicit> = R|<local>/<range>|.iterator#()
|
|
||||||
while(R|<local>/<iterator>|.hasNext#()) {
|
while(R|<local>/<iterator>|.hasNext#()) {
|
||||||
lval s: Some = R|<local>/<iterator>|.next#()
|
lval s: Some = R|<local>/<iterator>|.next#()
|
||||||
println#(s#)
|
println#(s#)
|
||||||
|
|||||||
+49
-53
@@ -170,62 +170,60 @@ digraph complex_kt {
|
|||||||
color=red
|
color=red
|
||||||
49 [label="Enter function firstIsInstanceOrNull" style="filled" fillcolor=red];
|
49 [label="Enter function firstIsInstanceOrNull" style="filled" fillcolor=red];
|
||||||
50 [label="Access variable this@R|/firstIsInstanceOrNull|"];
|
50 [label="Access variable this@R|/firstIsInstanceOrNull|"];
|
||||||
51 [label="Variable declaration: lval <range>: R|kotlin/collections/List<*>|"];
|
51 [label="Function call: this@R|/firstIsInstanceOrNull|.R|FakeOverride<kotlin/collections/List.iterator: R|kotlin/collections/Iterator<kotlin/Any?>|>|()"];
|
||||||
52 [label="Access variable R|<local>/<range>|"];
|
52 [label="Variable declaration: lval <iterator>: R|kotlin/collections/Iterator<kotlin/Any?>|"];
|
||||||
53 [label="Function call: R|<local>/<range>|.R|FakeOverride<kotlin/collections/List.iterator: R|kotlin/collections/Iterator<kotlin/Any?>|>|()"];
|
|
||||||
54 [label="Variable declaration: lval <iterator>: R|kotlin/collections/Iterator<kotlin/Any?>|"];
|
|
||||||
subgraph cluster_16 {
|
subgraph cluster_16 {
|
||||||
color=blue
|
color=blue
|
||||||
55 [label="Enter while loop"];
|
53 [label="Enter while loop"];
|
||||||
subgraph cluster_17 {
|
subgraph cluster_17 {
|
||||||
color=blue
|
color=blue
|
||||||
56 [label="Enter loop condition"];
|
54 [label="Enter loop condition"];
|
||||||
57 [label="Access variable R|<local>/<iterator>|"];
|
55 [label="Access variable R|<local>/<iterator>|"];
|
||||||
58 [label="Function call: R|<local>/<iterator>|.R|kotlin/collections/Iterator.hasNext|()"];
|
56 [label="Function call: R|<local>/<iterator>|.R|kotlin/collections/Iterator.hasNext|()"];
|
||||||
59 [label="Exit loop condition"];
|
57 [label="Exit loop condition"];
|
||||||
}
|
}
|
||||||
subgraph cluster_18 {
|
subgraph cluster_18 {
|
||||||
color=blue
|
color=blue
|
||||||
60 [label="Enter loop block"];
|
58 [label="Enter loop block"];
|
||||||
subgraph cluster_19 {
|
subgraph cluster_19 {
|
||||||
color=blue
|
color=blue
|
||||||
61 [label="Enter block"];
|
59 [label="Enter block"];
|
||||||
62 [label="Access variable R|<local>/<iterator>|"];
|
60 [label="Access variable R|<local>/<iterator>|"];
|
||||||
63 [label="Function call: R|<local>/<iterator>|.R|FakeOverride<kotlin/collections/Iterator.next: R|kotlin/Any?|>|()"];
|
61 [label="Function call: R|<local>/<iterator>|.R|FakeOverride<kotlin/collections/Iterator.next: R|kotlin/Any?|>|()"];
|
||||||
64 [label="Variable declaration: lval element: R|kotlin/Any?|"];
|
62 [label="Variable declaration: lval element: R|kotlin/Any?|"];
|
||||||
subgraph cluster_20 {
|
subgraph cluster_20 {
|
||||||
color=blue
|
color=blue
|
||||||
65 [label="Enter when"];
|
63 [label="Enter when"];
|
||||||
subgraph cluster_21 {
|
subgraph cluster_21 {
|
||||||
color=blue
|
color=blue
|
||||||
66 [label="Enter when branch condition "];
|
64 [label="Enter when branch condition "];
|
||||||
67 [label="Access variable R|<local>/element|"];
|
65 [label="Access variable R|<local>/element|"];
|
||||||
68 [label="Type operator: (R|<local>/element| is R|T|)"];
|
66 [label="Type operator: (R|<local>/element| is R|T|)"];
|
||||||
69 [label="Exit when branch condition"];
|
67 [label="Exit when branch condition"];
|
||||||
}
|
}
|
||||||
70 [label="Synthetic else branch"];
|
68 [label="Synthetic else branch"];
|
||||||
71 [label="Enter when branch result"];
|
69 [label="Enter when branch result"];
|
||||||
subgraph cluster_22 {
|
subgraph cluster_22 {
|
||||||
color=blue
|
color=blue
|
||||||
72 [label="Enter block"];
|
70 [label="Enter block"];
|
||||||
73 [label="Access variable R|<local>/element|"];
|
71 [label="Access variable R|<local>/element|"];
|
||||||
74 [label="Jump: ^firstIsInstanceOrNull R|<local>/element|"];
|
72 [label="Jump: ^firstIsInstanceOrNull R|<local>/element|"];
|
||||||
75 [label="Stub" style="filled" fillcolor=gray];
|
73 [label="Stub" style="filled" fillcolor=gray];
|
||||||
76 [label="Exit block" style="filled" fillcolor=gray];
|
74 [label="Exit block" style="filled" fillcolor=gray];
|
||||||
}
|
}
|
||||||
77 [label="Exit when branch result" style="filled" fillcolor=gray];
|
75 [label="Exit when branch result" style="filled" fillcolor=gray];
|
||||||
78 [label="Exit when"];
|
76 [label="Exit when"];
|
||||||
}
|
}
|
||||||
79 [label="Exit block"];
|
77 [label="Exit block"];
|
||||||
}
|
}
|
||||||
80 [label="Exit loop block"];
|
78 [label="Exit loop block"];
|
||||||
}
|
}
|
||||||
81 [label="Exit whileloop"];
|
79 [label="Exit whileloop"];
|
||||||
}
|
}
|
||||||
82 [label="Const: Null(null)"];
|
80 [label="Const: Null(null)"];
|
||||||
83 [label="Jump: ^firstIsInstanceOrNull Null(null)"];
|
81 [label="Jump: ^firstIsInstanceOrNull Null(null)"];
|
||||||
84 [label="Stub" style="filled" fillcolor=gray];
|
82 [label="Stub" style="filled" fillcolor=gray];
|
||||||
85 [label="Exit function firstIsInstanceOrNull" style="filled" fillcolor=red];
|
83 [label="Exit function firstIsInstanceOrNull" style="filled" fillcolor=red];
|
||||||
}
|
}
|
||||||
|
|
||||||
49 -> {50};
|
49 -> {50};
|
||||||
@@ -236,9 +234,9 @@ digraph complex_kt {
|
|||||||
54 -> {55};
|
54 -> {55};
|
||||||
55 -> {56};
|
55 -> {56};
|
||||||
56 -> {57};
|
56 -> {57};
|
||||||
57 -> {58};
|
57 -> {79 58};
|
||||||
58 -> {59};
|
58 -> {59};
|
||||||
59 -> {81 60};
|
59 -> {60};
|
||||||
60 -> {61};
|
60 -> {61};
|
||||||
61 -> {62};
|
61 -> {62};
|
||||||
62 -> {63};
|
62 -> {63};
|
||||||
@@ -246,25 +244,23 @@ digraph complex_kt {
|
|||||||
64 -> {65};
|
64 -> {65};
|
||||||
65 -> {66};
|
65 -> {66};
|
||||||
66 -> {67};
|
66 -> {67};
|
||||||
67 -> {68};
|
67 -> {69 68};
|
||||||
68 -> {69};
|
68 -> {76};
|
||||||
69 -> {71 70};
|
69 -> {70};
|
||||||
70 -> {78};
|
70 -> {71};
|
||||||
71 -> {72};
|
71 -> {72};
|
||||||
72 -> {73};
|
72 -> {83};
|
||||||
73 -> {74};
|
72 -> {73} [style=dotted];
|
||||||
74 -> {85};
|
73 -> {74} [style=dotted];
|
||||||
74 -> {75} [style=dotted];
|
74 -> {75} [style=dotted];
|
||||||
75 -> {76} [style=dotted];
|
75 -> {76} [style=dotted];
|
||||||
76 -> {77} [style=dotted];
|
76 -> {77};
|
||||||
77 -> {78} [style=dotted];
|
77 -> {78};
|
||||||
78 -> {79};
|
78 -> {54};
|
||||||
79 -> {80};
|
79 -> {80};
|
||||||
80 -> {56};
|
80 -> {81};
|
||||||
81 -> {82};
|
81 -> {83};
|
||||||
82 -> {83};
|
81 -> {82} [style=dotted];
|
||||||
83 -> {85};
|
82 -> {83} [style=dotted];
|
||||||
83 -> {84} [style=dotted];
|
|
||||||
84 -> {85} [style=dotted];
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-2
@@ -25,8 +25,7 @@ FILE: complex.kt
|
|||||||
|
|
||||||
}
|
}
|
||||||
public final inline fun <reified T : R|kotlin/Any|> R|kotlin/collections/List<*>|.firstIsInstanceOrNull(): R|T?| {
|
public final inline fun <reified T : R|kotlin/Any|> R|kotlin/collections/List<*>|.firstIsInstanceOrNull(): R|T?| {
|
||||||
lval <range>: R|kotlin/collections/List<*>| = this@R|/firstIsInstanceOrNull|
|
lval <iterator>: R|kotlin/collections/Iterator<kotlin/Any?>| = this@R|/firstIsInstanceOrNull|.R|FakeOverride<kotlin/collections/List.iterator: R|kotlin/collections/Iterator<kotlin/Any?>|>|()
|
||||||
lval <iterator>: R|kotlin/collections/Iterator<kotlin/Any?>| = R|<local>/<range>|.R|FakeOverride<kotlin/collections/List.iterator: R|kotlin/collections/Iterator<kotlin/Any?>|>|()
|
|
||||||
while(R|<local>/<iterator>|.R|kotlin/collections/Iterator.hasNext|()) {
|
while(R|<local>/<iterator>|.R|kotlin/collections/Iterator.hasNext|()) {
|
||||||
lval element: R|kotlin/Any?| = R|<local>/<iterator>|.R|FakeOverride<kotlin/collections/Iterator.next: R|kotlin/Any?|>|()
|
lval element: R|kotlin/Any?| = R|<local>/<iterator>|.R|FakeOverride<kotlin/collections/Iterator.next: R|kotlin/Any?|>|()
|
||||||
when () {
|
when () {
|
||||||
|
|||||||
+175
-179
@@ -105,41 +105,39 @@ digraph loops_kt {
|
|||||||
33 [label="Const: Int(0)"];
|
33 [label="Const: Int(0)"];
|
||||||
34 [label="Const: Int(5)"];
|
34 [label="Const: Int(5)"];
|
||||||
35 [label="Function call: Int(0).R|kotlin/Int.rangeTo|(Int(5))"];
|
35 [label="Function call: Int(0).R|kotlin/Int.rangeTo|(Int(5))"];
|
||||||
36 [label="Variable declaration: lval <range>: R|kotlin/ranges/IntRange|"];
|
36 [label="Function call: Int(0).R|kotlin/Int.rangeTo|(Int(5)).R|kotlin/ranges/IntProgression.iterator|()"];
|
||||||
37 [label="Access variable R|<local>/<range>|"];
|
37 [label="Variable declaration: lval <iterator>: R|kotlin/collections/IntIterator|"];
|
||||||
38 [label="Function call: R|<local>/<range>|.R|kotlin/ranges/IntProgression.iterator|()"];
|
|
||||||
39 [label="Variable declaration: lval <iterator>: R|kotlin/collections/IntIterator|"];
|
|
||||||
subgraph cluster_11 {
|
subgraph cluster_11 {
|
||||||
color=blue
|
color=blue
|
||||||
40 [label="Enter while loop"];
|
38 [label="Enter while loop"];
|
||||||
subgraph cluster_12 {
|
subgraph cluster_12 {
|
||||||
color=blue
|
color=blue
|
||||||
41 [label="Enter loop condition"];
|
39 [label="Enter loop condition"];
|
||||||
42 [label="Access variable R|<local>/<iterator>|"];
|
40 [label="Access variable R|<local>/<iterator>|"];
|
||||||
43 [label="Function call: R|<local>/<iterator>|.R|kotlin/collections/Iterator.hasNext|()"];
|
41 [label="Function call: R|<local>/<iterator>|.R|kotlin/collections/Iterator.hasNext|()"];
|
||||||
44 [label="Exit loop condition"];
|
42 [label="Exit loop condition"];
|
||||||
}
|
}
|
||||||
subgraph cluster_13 {
|
subgraph cluster_13 {
|
||||||
color=blue
|
color=blue
|
||||||
45 [label="Enter loop block"];
|
43 [label="Enter loop block"];
|
||||||
subgraph cluster_14 {
|
subgraph cluster_14 {
|
||||||
color=blue
|
color=blue
|
||||||
46 [label="Enter block"];
|
44 [label="Enter block"];
|
||||||
47 [label="Access variable R|<local>/<iterator>|"];
|
45 [label="Access variable R|<local>/<iterator>|"];
|
||||||
48 [label="Function call: R|<local>/<iterator>|.R|kotlin/collections/IntIterator.next|()"];
|
46 [label="Function call: R|<local>/<iterator>|.R|kotlin/collections/IntIterator.next|()"];
|
||||||
49 [label="Variable declaration: lval i: R|kotlin/Int|"];
|
47 [label="Variable declaration: lval i: R|kotlin/Int|"];
|
||||||
50 [label="Access variable R|<local>/x|"];
|
48 [label="Access variable R|<local>/x|"];
|
||||||
51 [label="Type operator: (R|<local>/x| is R|kotlin/String|)"];
|
49 [label="Type operator: (R|<local>/x| is R|kotlin/String|)"];
|
||||||
52 [label="Variable declaration: lval y: R|kotlin/Boolean|"];
|
50 [label="Variable declaration: lval y: R|kotlin/Boolean|"];
|
||||||
53 [label="Exit block"];
|
51 [label="Exit block"];
|
||||||
}
|
}
|
||||||
54 [label="Exit loop block"];
|
52 [label="Exit loop block"];
|
||||||
}
|
}
|
||||||
55 [label="Exit whileloop"];
|
53 [label="Exit whileloop"];
|
||||||
}
|
}
|
||||||
56 [label="Access variable R|<local>/x|"];
|
54 [label="Access variable R|<local>/x|"];
|
||||||
57 [label="Type operator: (R|<local>/x| is R|kotlin/String|)"];
|
55 [label="Type operator: (R|<local>/x| is R|kotlin/String|)"];
|
||||||
58 [label="Exit function testFor" style="filled" fillcolor=red];
|
56 [label="Exit function testFor" style="filled" fillcolor=red];
|
||||||
}
|
}
|
||||||
|
|
||||||
32 -> {33};
|
32 -> {33};
|
||||||
@@ -152,9 +150,9 @@ digraph loops_kt {
|
|||||||
39 -> {40};
|
39 -> {40};
|
||||||
40 -> {41};
|
40 -> {41};
|
||||||
41 -> {42};
|
41 -> {42};
|
||||||
42 -> {43};
|
42 -> {53 43};
|
||||||
43 -> {44};
|
43 -> {44};
|
||||||
44 -> {55 45};
|
44 -> {45};
|
||||||
45 -> {46};
|
45 -> {46};
|
||||||
46 -> {47};
|
46 -> {47};
|
||||||
47 -> {48};
|
47 -> {48};
|
||||||
@@ -162,203 +160,203 @@ digraph loops_kt {
|
|||||||
49 -> {50};
|
49 -> {50};
|
||||||
50 -> {51};
|
50 -> {51};
|
||||||
51 -> {52};
|
51 -> {52};
|
||||||
52 -> {53};
|
52 -> {39};
|
||||||
53 -> {54};
|
53 -> {54};
|
||||||
54 -> {41};
|
54 -> {55};
|
||||||
55 -> {56};
|
55 -> {56};
|
||||||
56 -> {57};
|
|
||||||
57 -> {58};
|
|
||||||
|
|
||||||
subgraph cluster_15 {
|
subgraph cluster_15 {
|
||||||
color=red
|
color=red
|
||||||
59 [label="Enter function testWhileTrue" style="filled" fillcolor=red];
|
57 [label="Enter function testWhileTrue" style="filled" fillcolor=red];
|
||||||
subgraph cluster_16 {
|
subgraph cluster_16 {
|
||||||
color=blue
|
color=blue
|
||||||
60 [label="Enter while loop"];
|
58 [label="Enter while loop"];
|
||||||
subgraph cluster_17 {
|
subgraph cluster_17 {
|
||||||
color=blue
|
color=blue
|
||||||
61 [label="Enter loop condition"];
|
59 [label="Enter loop condition"];
|
||||||
62 [label="Const: Boolean(true)"];
|
60 [label="Const: Boolean(true)"];
|
||||||
63 [label="Exit loop condition"];
|
61 [label="Exit loop condition"];
|
||||||
}
|
}
|
||||||
subgraph cluster_18 {
|
subgraph cluster_18 {
|
||||||
color=blue
|
color=blue
|
||||||
64 [label="Enter loop block"];
|
62 [label="Enter loop block"];
|
||||||
subgraph cluster_19 {
|
subgraph cluster_19 {
|
||||||
color=blue
|
color=blue
|
||||||
65 [label="Enter block"];
|
63 [label="Enter block"];
|
||||||
66 [label="Const: Int(1)"];
|
64 [label="Const: Int(1)"];
|
||||||
67 [label="Exit block"];
|
65 [label="Exit block"];
|
||||||
}
|
}
|
||||||
68 [label="Exit loop block"];
|
66 [label="Exit loop block"];
|
||||||
}
|
}
|
||||||
69 [label="Exit whileloop" style="filled" fillcolor=gray];
|
67 [label="Exit whileloop" style="filled" fillcolor=gray];
|
||||||
}
|
}
|
||||||
70 [label="Const: Int(1)" style="filled" fillcolor=gray];
|
68 [label="Const: Int(1)" style="filled" fillcolor=gray];
|
||||||
71 [label="Exit function testWhileTrue" style="filled" fillcolor=red style="filled" fillcolor=gray];
|
69 [label="Exit function testWhileTrue" style="filled" fillcolor=red style="filled" fillcolor=gray];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
57 -> {58};
|
||||||
|
58 -> {59};
|
||||||
59 -> {60};
|
59 -> {60};
|
||||||
60 -> {61};
|
60 -> {61};
|
||||||
61 -> {62};
|
61 -> {62};
|
||||||
|
61 -> {67} [style=dotted];
|
||||||
62 -> {63};
|
62 -> {63};
|
||||||
63 -> {64};
|
63 -> {64};
|
||||||
63 -> {69} [style=dotted];
|
|
||||||
64 -> {65};
|
64 -> {65};
|
||||||
65 -> {66};
|
65 -> {66};
|
||||||
66 -> {67};
|
66 -> {59};
|
||||||
67 -> {68};
|
67 -> {68} [style=dotted];
|
||||||
68 -> {61};
|
68 -> {69} [style=dotted];
|
||||||
69 -> {70} [style=dotted];
|
|
||||||
70 -> {71} [style=dotted];
|
|
||||||
|
|
||||||
subgraph cluster_20 {
|
subgraph cluster_20 {
|
||||||
color=red
|
color=red
|
||||||
72 [label="Enter function testWhileTrueWithBreak" style="filled" fillcolor=red];
|
70 [label="Enter function testWhileTrueWithBreak" style="filled" fillcolor=red];
|
||||||
subgraph cluster_21 {
|
subgraph cluster_21 {
|
||||||
color=blue
|
color=blue
|
||||||
73 [label="Enter while loop"];
|
71 [label="Enter while loop"];
|
||||||
subgraph cluster_22 {
|
subgraph cluster_22 {
|
||||||
color=blue
|
color=blue
|
||||||
74 [label="Enter loop condition"];
|
72 [label="Enter loop condition"];
|
||||||
75 [label="Const: Boolean(true)"];
|
73 [label="Const: Boolean(true)"];
|
||||||
76 [label="Exit loop condition"];
|
74 [label="Exit loop condition"];
|
||||||
}
|
}
|
||||||
subgraph cluster_23 {
|
subgraph cluster_23 {
|
||||||
color=blue
|
color=blue
|
||||||
77 [label="Enter loop block"];
|
75 [label="Enter loop block"];
|
||||||
subgraph cluster_24 {
|
subgraph cluster_24 {
|
||||||
color=blue
|
color=blue
|
||||||
78 [label="Enter block"];
|
76 [label="Enter block"];
|
||||||
subgraph cluster_25 {
|
subgraph cluster_25 {
|
||||||
color=blue
|
color=blue
|
||||||
79 [label="Enter when"];
|
77 [label="Enter when"];
|
||||||
subgraph cluster_26 {
|
subgraph cluster_26 {
|
||||||
color=blue
|
color=blue
|
||||||
80 [label="Enter when branch condition "];
|
78 [label="Enter when branch condition "];
|
||||||
81 [label="Access variable R|<local>/b|"];
|
79 [label="Access variable R|<local>/b|"];
|
||||||
82 [label="Exit when branch condition"];
|
80 [label="Exit when branch condition"];
|
||||||
}
|
}
|
||||||
83 [label="Synthetic else branch"];
|
81 [label="Synthetic else branch"];
|
||||||
84 [label="Enter when branch result"];
|
82 [label="Enter when branch result"];
|
||||||
subgraph cluster_27 {
|
subgraph cluster_27 {
|
||||||
color=blue
|
color=blue
|
||||||
85 [label="Enter block"];
|
83 [label="Enter block"];
|
||||||
86 [label="Jump: break@@@[Boolean(true)] "];
|
84 [label="Jump: break@@@[Boolean(true)] "];
|
||||||
87 [label="Stub" style="filled" fillcolor=gray];
|
85 [label="Stub" style="filled" fillcolor=gray];
|
||||||
88 [label="Exit block" style="filled" fillcolor=gray];
|
86 [label="Exit block" style="filled" fillcolor=gray];
|
||||||
}
|
}
|
||||||
89 [label="Exit when branch result" style="filled" fillcolor=gray];
|
87 [label="Exit when branch result" style="filled" fillcolor=gray];
|
||||||
90 [label="Exit when"];
|
88 [label="Exit when"];
|
||||||
}
|
}
|
||||||
91 [label="Exit block"];
|
89 [label="Exit block"];
|
||||||
}
|
}
|
||||||
92 [label="Exit loop block"];
|
90 [label="Exit loop block"];
|
||||||
}
|
}
|
||||||
93 [label="Exit whileloop"];
|
91 [label="Exit whileloop"];
|
||||||
}
|
}
|
||||||
94 [label="Const: Int(1)"];
|
92 [label="Const: Int(1)"];
|
||||||
95 [label="Exit function testWhileTrueWithBreak" style="filled" fillcolor=red];
|
93 [label="Exit function testWhileTrueWithBreak" style="filled" fillcolor=red];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
70 -> {71};
|
||||||
|
71 -> {72};
|
||||||
72 -> {73};
|
72 -> {73};
|
||||||
73 -> {74};
|
73 -> {74};
|
||||||
74 -> {75};
|
74 -> {75};
|
||||||
|
74 -> {91} [style=dotted];
|
||||||
75 -> {76};
|
75 -> {76};
|
||||||
76 -> {77};
|
76 -> {77};
|
||||||
76 -> {93} [style=dotted];
|
|
||||||
77 -> {78};
|
77 -> {78};
|
||||||
78 -> {79};
|
78 -> {79};
|
||||||
79 -> {80};
|
79 -> {80};
|
||||||
80 -> {81};
|
80 -> {82 81};
|
||||||
81 -> {82};
|
81 -> {88};
|
||||||
82 -> {84 83};
|
82 -> {83};
|
||||||
83 -> {90};
|
83 -> {84};
|
||||||
84 -> {85};
|
84 -> {91};
|
||||||
85 -> {86};
|
84 -> {85} [style=dotted];
|
||||||
86 -> {93};
|
85 -> {86} [style=dotted];
|
||||||
86 -> {87} [style=dotted];
|
86 -> {87} [style=dotted];
|
||||||
87 -> {88} [style=dotted];
|
87 -> {88} [style=dotted];
|
||||||
88 -> {89} [style=dotted];
|
88 -> {89};
|
||||||
89 -> {90} [style=dotted];
|
89 -> {90};
|
||||||
90 -> {91};
|
90 -> {72};
|
||||||
91 -> {92};
|
91 -> {92};
|
||||||
92 -> {74};
|
92 -> {93};
|
||||||
93 -> {94};
|
|
||||||
94 -> {95};
|
|
||||||
|
|
||||||
subgraph cluster_28 {
|
subgraph cluster_28 {
|
||||||
color=red
|
color=red
|
||||||
96 [label="Enter function testWhileFalse" style="filled" fillcolor=red];
|
94 [label="Enter function testWhileFalse" style="filled" fillcolor=red];
|
||||||
subgraph cluster_29 {
|
subgraph cluster_29 {
|
||||||
color=blue
|
color=blue
|
||||||
97 [label="Enter while loop"];
|
95 [label="Enter while loop"];
|
||||||
subgraph cluster_30 {
|
subgraph cluster_30 {
|
||||||
color=blue
|
color=blue
|
||||||
98 [label="Enter loop condition"];
|
96 [label="Enter loop condition"];
|
||||||
99 [label="Const: Boolean(false)"];
|
97 [label="Const: Boolean(false)"];
|
||||||
100 [label="Exit loop condition"];
|
98 [label="Exit loop condition"];
|
||||||
}
|
}
|
||||||
subgraph cluster_31 {
|
subgraph cluster_31 {
|
||||||
color=blue
|
color=blue
|
||||||
101 [label="Enter loop block" style="filled" fillcolor=gray];
|
99 [label="Enter loop block" style="filled" fillcolor=gray];
|
||||||
subgraph cluster_32 {
|
subgraph cluster_32 {
|
||||||
color=blue
|
color=blue
|
||||||
102 [label="Enter block" style="filled" fillcolor=gray];
|
100 [label="Enter block" style="filled" fillcolor=gray];
|
||||||
103 [label="Const: Int(1)" style="filled" fillcolor=gray];
|
101 [label="Const: Int(1)" style="filled" fillcolor=gray];
|
||||||
104 [label="Exit block" style="filled" fillcolor=gray];
|
102 [label="Exit block" style="filled" fillcolor=gray];
|
||||||
}
|
}
|
||||||
105 [label="Exit loop block" style="filled" fillcolor=gray];
|
103 [label="Exit loop block" style="filled" fillcolor=gray];
|
||||||
}
|
}
|
||||||
106 [label="Exit whileloop"];
|
104 [label="Exit whileloop"];
|
||||||
}
|
}
|
||||||
107 [label="Const: Int(1)"];
|
105 [label="Const: Int(1)"];
|
||||||
108 [label="Exit function testWhileFalse" style="filled" fillcolor=red];
|
106 [label="Exit function testWhileFalse" style="filled" fillcolor=red];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
94 -> {95};
|
||||||
|
95 -> {96};
|
||||||
96 -> {97};
|
96 -> {97};
|
||||||
97 -> {98};
|
97 -> {98};
|
||||||
98 -> {99};
|
98 -> {104};
|
||||||
99 -> {100};
|
98 -> {99} [style=dotted];
|
||||||
100 -> {106};
|
99 -> {100} [style=dotted];
|
||||||
100 -> {101} [style=dotted];
|
100 -> {101} [style=dotted];
|
||||||
101 -> {102} [style=dotted];
|
101 -> {102} [style=dotted];
|
||||||
102 -> {103} [style=dotted];
|
102 -> {103} [style=dotted];
|
||||||
103 -> {104} [style=dotted];
|
103 -> {96} [style=dotted];
|
||||||
104 -> {105} [style=dotted];
|
104 -> {105};
|
||||||
105 -> {98} [style=dotted];
|
105 -> {106};
|
||||||
106 -> {107};
|
|
||||||
107 -> {108};
|
|
||||||
|
|
||||||
subgraph cluster_33 {
|
subgraph cluster_33 {
|
||||||
color=red
|
color=red
|
||||||
109 [label="Enter function testDoWhileTrue" style="filled" fillcolor=red];
|
107 [label="Enter function testDoWhileTrue" style="filled" fillcolor=red];
|
||||||
subgraph cluster_34 {
|
subgraph cluster_34 {
|
||||||
color=blue
|
color=blue
|
||||||
110 [label="Enter do-while loop"];
|
108 [label="Enter do-while loop"];
|
||||||
subgraph cluster_35 {
|
subgraph cluster_35 {
|
||||||
color=blue
|
color=blue
|
||||||
111 [label="Enter loop block"];
|
109 [label="Enter loop block"];
|
||||||
subgraph cluster_36 {
|
subgraph cluster_36 {
|
||||||
color=blue
|
color=blue
|
||||||
112 [label="Enter block"];
|
110 [label="Enter block"];
|
||||||
113 [label="Const: Int(1)"];
|
111 [label="Const: Int(1)"];
|
||||||
114 [label="Exit block"];
|
112 [label="Exit block"];
|
||||||
}
|
}
|
||||||
115 [label="Exit loop block"];
|
113 [label="Exit loop block"];
|
||||||
}
|
}
|
||||||
subgraph cluster_37 {
|
subgraph cluster_37 {
|
||||||
color=blue
|
color=blue
|
||||||
116 [label="Enter loop condition"];
|
114 [label="Enter loop condition"];
|
||||||
117 [label="Const: Boolean(true)"];
|
115 [label="Const: Boolean(true)"];
|
||||||
118 [label="Exit loop condition"];
|
116 [label="Exit loop condition"];
|
||||||
}
|
}
|
||||||
119 [label="Exit do-whileloop" style="filled" fillcolor=gray];
|
117 [label="Exit do-whileloop" style="filled" fillcolor=gray];
|
||||||
}
|
}
|
||||||
120 [label="Const: Int(1)" style="filled" fillcolor=gray];
|
118 [label="Const: Int(1)" style="filled" fillcolor=gray];
|
||||||
121 [label="Exit function testDoWhileTrue" style="filled" fillcolor=red style="filled" fillcolor=gray];
|
119 [label="Exit function testDoWhileTrue" style="filled" fillcolor=red style="filled" fillcolor=gray];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
107 -> {108};
|
||||||
|
108 -> {109};
|
||||||
109 -> {110};
|
109 -> {110};
|
||||||
110 -> {111};
|
110 -> {111};
|
||||||
111 -> {112};
|
111 -> {112};
|
||||||
@@ -366,117 +364,117 @@ digraph loops_kt {
|
|||||||
113 -> {114};
|
113 -> {114};
|
||||||
114 -> {115};
|
114 -> {115};
|
||||||
115 -> {116};
|
115 -> {116};
|
||||||
116 -> {117};
|
116 -> {109};
|
||||||
117 -> {118};
|
116 -> {117} [style=dotted];
|
||||||
118 -> {111};
|
117 -> {118} [style=dotted];
|
||||||
118 -> {119} [style=dotted];
|
118 -> {119} [style=dotted];
|
||||||
119 -> {120} [style=dotted];
|
|
||||||
120 -> {121} [style=dotted];
|
|
||||||
|
|
||||||
subgraph cluster_38 {
|
subgraph cluster_38 {
|
||||||
color=red
|
color=red
|
||||||
122 [label="Enter function testDoWhileTrueWithBreak" style="filled" fillcolor=red];
|
120 [label="Enter function testDoWhileTrueWithBreak" style="filled" fillcolor=red];
|
||||||
subgraph cluster_39 {
|
subgraph cluster_39 {
|
||||||
color=blue
|
color=blue
|
||||||
123 [label="Enter do-while loop"];
|
121 [label="Enter do-while loop"];
|
||||||
subgraph cluster_40 {
|
subgraph cluster_40 {
|
||||||
color=blue
|
color=blue
|
||||||
124 [label="Enter loop block"];
|
122 [label="Enter loop block"];
|
||||||
subgraph cluster_41 {
|
subgraph cluster_41 {
|
||||||
color=blue
|
color=blue
|
||||||
125 [label="Enter block"];
|
123 [label="Enter block"];
|
||||||
subgraph cluster_42 {
|
subgraph cluster_42 {
|
||||||
color=blue
|
color=blue
|
||||||
126 [label="Enter when"];
|
124 [label="Enter when"];
|
||||||
subgraph cluster_43 {
|
subgraph cluster_43 {
|
||||||
color=blue
|
color=blue
|
||||||
127 [label="Enter when branch condition "];
|
125 [label="Enter when branch condition "];
|
||||||
128 [label="Access variable R|<local>/b|"];
|
126 [label="Access variable R|<local>/b|"];
|
||||||
129 [label="Exit when branch condition"];
|
127 [label="Exit when branch condition"];
|
||||||
}
|
}
|
||||||
130 [label="Synthetic else branch"];
|
128 [label="Synthetic else branch"];
|
||||||
131 [label="Enter when branch result"];
|
129 [label="Enter when branch result"];
|
||||||
subgraph cluster_44 {
|
subgraph cluster_44 {
|
||||||
color=blue
|
color=blue
|
||||||
132 [label="Enter block"];
|
130 [label="Enter block"];
|
||||||
133 [label="Jump: break@@@[Boolean(true)] "];
|
131 [label="Jump: break@@@[Boolean(true)] "];
|
||||||
134 [label="Stub" style="filled" fillcolor=gray];
|
132 [label="Stub" style="filled" fillcolor=gray];
|
||||||
135 [label="Exit block" style="filled" fillcolor=gray];
|
133 [label="Exit block" style="filled" fillcolor=gray];
|
||||||
}
|
}
|
||||||
136 [label="Exit when branch result" style="filled" fillcolor=gray];
|
134 [label="Exit when branch result" style="filled" fillcolor=gray];
|
||||||
137 [label="Exit when"];
|
135 [label="Exit when"];
|
||||||
}
|
}
|
||||||
138 [label="Exit block"];
|
136 [label="Exit block"];
|
||||||
}
|
}
|
||||||
139 [label="Exit loop block"];
|
137 [label="Exit loop block"];
|
||||||
}
|
}
|
||||||
subgraph cluster_45 {
|
subgraph cluster_45 {
|
||||||
color=blue
|
color=blue
|
||||||
140 [label="Enter loop condition"];
|
138 [label="Enter loop condition"];
|
||||||
141 [label="Const: Boolean(true)"];
|
139 [label="Const: Boolean(true)"];
|
||||||
142 [label="Exit loop condition"];
|
140 [label="Exit loop condition"];
|
||||||
}
|
}
|
||||||
143 [label="Exit do-whileloop"];
|
141 [label="Exit do-whileloop"];
|
||||||
}
|
}
|
||||||
144 [label="Const: Int(1)"];
|
142 [label="Const: Int(1)"];
|
||||||
145 [label="Exit function testDoWhileTrueWithBreak" style="filled" fillcolor=red];
|
143 [label="Exit function testDoWhileTrueWithBreak" style="filled" fillcolor=red];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
120 -> {121};
|
||||||
|
121 -> {122};
|
||||||
122 -> {123};
|
122 -> {123};
|
||||||
123 -> {124};
|
123 -> {124};
|
||||||
124 -> {125};
|
124 -> {125};
|
||||||
125 -> {126};
|
125 -> {126};
|
||||||
126 -> {127};
|
126 -> {127};
|
||||||
127 -> {128};
|
127 -> {129 128};
|
||||||
128 -> {129};
|
128 -> {135};
|
||||||
129 -> {131 130};
|
129 -> {130};
|
||||||
130 -> {137};
|
130 -> {131};
|
||||||
131 -> {132};
|
131 -> {141};
|
||||||
132 -> {133};
|
131 -> {132} [style=dotted];
|
||||||
133 -> {143};
|
132 -> {133} [style=dotted];
|
||||||
133 -> {134} [style=dotted];
|
133 -> {134} [style=dotted];
|
||||||
134 -> {135} [style=dotted];
|
134 -> {135} [style=dotted];
|
||||||
135 -> {136} [style=dotted];
|
135 -> {136};
|
||||||
136 -> {137} [style=dotted];
|
136 -> {137};
|
||||||
137 -> {138};
|
137 -> {138};
|
||||||
138 -> {139};
|
138 -> {139};
|
||||||
139 -> {140};
|
139 -> {140};
|
||||||
140 -> {141};
|
140 -> {122};
|
||||||
|
140 -> {141} [style=dotted];
|
||||||
141 -> {142};
|
141 -> {142};
|
||||||
142 -> {124};
|
142 -> {143};
|
||||||
142 -> {143} [style=dotted];
|
|
||||||
143 -> {144};
|
|
||||||
144 -> {145};
|
|
||||||
|
|
||||||
subgraph cluster_46 {
|
subgraph cluster_46 {
|
||||||
color=red
|
color=red
|
||||||
146 [label="Enter function testDoWhileFalse" style="filled" fillcolor=red];
|
144 [label="Enter function testDoWhileFalse" style="filled" fillcolor=red];
|
||||||
subgraph cluster_47 {
|
subgraph cluster_47 {
|
||||||
color=blue
|
color=blue
|
||||||
147 [label="Enter do-while loop"];
|
145 [label="Enter do-while loop"];
|
||||||
subgraph cluster_48 {
|
subgraph cluster_48 {
|
||||||
color=blue
|
color=blue
|
||||||
148 [label="Enter loop block"];
|
146 [label="Enter loop block"];
|
||||||
subgraph cluster_49 {
|
subgraph cluster_49 {
|
||||||
color=blue
|
color=blue
|
||||||
149 [label="Enter block"];
|
147 [label="Enter block"];
|
||||||
150 [label="Const: Int(1)"];
|
148 [label="Const: Int(1)"];
|
||||||
151 [label="Exit block"];
|
149 [label="Exit block"];
|
||||||
}
|
}
|
||||||
152 [label="Exit loop block"];
|
150 [label="Exit loop block"];
|
||||||
}
|
}
|
||||||
subgraph cluster_50 {
|
subgraph cluster_50 {
|
||||||
color=blue
|
color=blue
|
||||||
153 [label="Enter loop condition"];
|
151 [label="Enter loop condition"];
|
||||||
154 [label="Const: Boolean(false)"];
|
152 [label="Const: Boolean(false)"];
|
||||||
155 [label="Exit loop condition"];
|
153 [label="Exit loop condition"];
|
||||||
}
|
}
|
||||||
156 [label="Exit do-whileloop"];
|
154 [label="Exit do-whileloop"];
|
||||||
}
|
}
|
||||||
157 [label="Const: Int(1)"];
|
155 [label="Const: Int(1)"];
|
||||||
158 [label="Exit function testDoWhileFalse" style="filled" fillcolor=red];
|
156 [label="Exit function testDoWhileFalse" style="filled" fillcolor=red];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
144 -> {145};
|
||||||
|
145 -> {146};
|
||||||
146 -> {147};
|
146 -> {147};
|
||||||
147 -> {148};
|
147 -> {148};
|
||||||
148 -> {149};
|
148 -> {149};
|
||||||
@@ -485,10 +483,8 @@ digraph loops_kt {
|
|||||||
151 -> {152};
|
151 -> {152};
|
||||||
152 -> {153};
|
152 -> {153};
|
||||||
153 -> {154};
|
153 -> {154};
|
||||||
|
153 -> {146} [style=dotted];
|
||||||
154 -> {155};
|
154 -> {155};
|
||||||
155 -> {156};
|
155 -> {156};
|
||||||
155 -> {148} [style=dotted];
|
|
||||||
156 -> {157};
|
|
||||||
157 -> {158};
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-2
@@ -14,8 +14,7 @@ FILE: loops.kt
|
|||||||
(R|<local>/x| is R|kotlin/String|)
|
(R|<local>/x| is R|kotlin/String|)
|
||||||
}
|
}
|
||||||
public final fun testFor(x: R|kotlin/Any?|): R|kotlin/Unit| {
|
public final fun testFor(x: R|kotlin/Any?|): R|kotlin/Unit| {
|
||||||
lval <range>: R|kotlin/ranges/IntRange| = Int(0).R|kotlin/Int.rangeTo|(Int(5))
|
lval <iterator>: R|kotlin/collections/IntIterator| = Int(0).R|kotlin/Int.rangeTo|(Int(5)).R|kotlin/ranges/IntProgression.iterator|()
|
||||||
lval <iterator>: R|kotlin/collections/IntIterator| = R|<local>/<range>|.R|kotlin/ranges/IntProgression.iterator|()
|
|
||||||
while(R|<local>/<iterator>|.R|kotlin/collections/Iterator.hasNext|()) {
|
while(R|<local>/<iterator>|.R|kotlin/collections/Iterator.hasNext|()) {
|
||||||
lval i: R|kotlin/Int| = R|<local>/<iterator>|.R|kotlin/collections/IntIterator.next|()
|
lval i: R|kotlin/Int| = R|<local>/<iterator>|.R|kotlin/collections/IntIterator.next|()
|
||||||
lval y: R|kotlin/Boolean| = (R|<local>/x| is R|kotlin/String|)
|
lval y: R|kotlin/Boolean| = (R|<local>/x| is R|kotlin/String|)
|
||||||
|
|||||||
@@ -38,8 +38,7 @@ FILE: enumValues.kt
|
|||||||
}
|
}
|
||||||
public final fun foo(): R|kotlin/Unit| {
|
public final fun foo(): R|kotlin/Unit| {
|
||||||
lval values: R|kotlin/Array<MyEnum>| = Q|MyEnum|.R|/MyEnum.values|()
|
lval values: R|kotlin/Array<MyEnum>| = Q|MyEnum|.R|/MyEnum.values|()
|
||||||
lval <range>: R|kotlin/Array<MyEnum>| = R|<local>/values|
|
lval <iterator>: R|kotlin/collections/Iterator<MyEnum>| = R|<local>/values|.R|FakeOverride<kotlin/Array.iterator: R|kotlin/collections/Iterator<MyEnum>|>|()
|
||||||
lval <iterator>: R|kotlin/collections/Iterator<MyEnum>| = R|<local>/<range>|.R|FakeOverride<kotlin/Array.iterator: R|kotlin/collections/Iterator<MyEnum>|>|()
|
|
||||||
while(R|<local>/<iterator>|.R|kotlin/collections/Iterator.hasNext|()) {
|
while(R|<local>/<iterator>|.R|kotlin/collections/Iterator.hasNext|()) {
|
||||||
lval value: R|MyEnum| = R|<local>/<iterator>|.R|FakeOverride<kotlin/collections/Iterator.next: R|MyEnum|>|()
|
lval value: R|MyEnum| = R|<local>/<iterator>|.R|FakeOverride<kotlin/collections/Iterator.next: R|MyEnum|>|()
|
||||||
R|<local>/value|.R|/MyEnum.bar|()
|
R|<local>/value|.R|/MyEnum.bar|()
|
||||||
|
|||||||
+1
-2
@@ -8,8 +8,7 @@ FILE: fib.kt
|
|||||||
|
|
||||||
lvar current: R|kotlin/Int| = Int(1)
|
lvar current: R|kotlin/Int| = Int(1)
|
||||||
lvar prev: R|kotlin/Int| = Int(1)
|
lvar prev: R|kotlin/Int| = Int(1)
|
||||||
lval <range>: R|kotlin/ranges/IntRange| = Int(2).R|kotlin/Int.rangeTo|(R|<local>/n|)
|
lval <iterator>: R|kotlin/collections/IntIterator| = Int(2).R|kotlin/Int.rangeTo|(R|<local>/n|).R|kotlin/ranges/IntProgression.iterator|()
|
||||||
lval <iterator>: R|kotlin/collections/IntIterator| = R|<local>/<range>|.R|kotlin/ranges/IntProgression.iterator|()
|
|
||||||
while(R|<local>/<iterator>|.R|kotlin/collections/Iterator.hasNext|()) {
|
while(R|<local>/<iterator>|.R|kotlin/collections/Iterator.hasNext|()) {
|
||||||
lval i: R|kotlin/Int| = R|<local>/<iterator>|.R|kotlin/collections/IntIterator.next|()
|
lval i: R|kotlin/Int| = R|<local>/<iterator>|.R|kotlin/collections/IntIterator.next|()
|
||||||
lval temp: R|kotlin/Int| = R|<local>/current|
|
lval temp: R|kotlin/Int| = R|<local>/current|
|
||||||
|
|||||||
Vendored
+350
-354
File diff suppressed because it is too large
Load Diff
Vendored
+1
-2
@@ -10,8 +10,7 @@ FILE: boundSmartcastsInBranches.kt
|
|||||||
}
|
}
|
||||||
public final fun test_0(list: R|kotlin/collections/List<A>|): R|kotlin/Unit| {
|
public final fun test_0(list: R|kotlin/collections/List<A>|): R|kotlin/Unit| {
|
||||||
lvar goodA: R|A?| = Null(null)
|
lvar goodA: R|A?| = Null(null)
|
||||||
lval <range>: R|kotlin/collections/List<A>| = R|<local>/list|
|
lval <iterator>: R|kotlin/collections/Iterator<A>| = R|<local>/list|.R|FakeOverride<kotlin/collections/List.iterator: R|kotlin/collections/Iterator<A>|>|()
|
||||||
lval <iterator>: R|kotlin/collections/Iterator<A>| = R|<local>/<range>|.R|FakeOverride<kotlin/collections/List.iterator: R|kotlin/collections/Iterator<A>|>|()
|
|
||||||
while(R|<local>/<iterator>|.R|kotlin/collections/Iterator.hasNext|()) {
|
while(R|<local>/<iterator>|.R|kotlin/collections/Iterator.hasNext|()) {
|
||||||
lval a: R|A| = R|<local>/<iterator>|.R|FakeOverride<kotlin/collections/Iterator.next: R|A|>|()
|
lval a: R|A| = R|<local>/<iterator>|.R|FakeOverride<kotlin/collections/Iterator.next: R|A|>|()
|
||||||
when () {
|
when () {
|
||||||
|
|||||||
@@ -150,76 +150,74 @@ digraph smartcastToNothing_kt {
|
|||||||
45 [label="Const: Null(null)"];
|
45 [label="Const: Null(null)"];
|
||||||
46 [label="Variable declaration: lvar s: R|A?|"];
|
46 [label="Variable declaration: lvar s: R|A?|"];
|
||||||
47 [label="Access variable R|<local>/results|"];
|
47 [label="Access variable R|<local>/results|"];
|
||||||
48 [label="Variable declaration: lval <range>: R|kotlin/collections/List<kotlin/Nothing>|"];
|
48 [label="Function call: R|<local>/results|.R|FakeOverride<kotlin/collections/List.iterator: R|kotlin/collections/Iterator<kotlin/Nothing>|>|()"];
|
||||||
49 [label="Access variable R|<local>/<range>|"];
|
49 [label="Variable declaration: lval <iterator>: R|kotlin/collections/Iterator<kotlin/Nothing>|"];
|
||||||
50 [label="Function call: R|<local>/<range>|.R|FakeOverride<kotlin/collections/List.iterator: R|kotlin/collections/Iterator<kotlin/Nothing>|>|()"];
|
|
||||||
51 [label="Variable declaration: lval <iterator>: R|kotlin/collections/Iterator<kotlin/Nothing>|"];
|
|
||||||
subgraph cluster_13 {
|
subgraph cluster_13 {
|
||||||
color=blue
|
color=blue
|
||||||
52 [label="Enter while loop"];
|
50 [label="Enter while loop"];
|
||||||
subgraph cluster_14 {
|
subgraph cluster_14 {
|
||||||
color=blue
|
color=blue
|
||||||
53 [label="Enter loop condition"];
|
51 [label="Enter loop condition"];
|
||||||
54 [label="Access variable R|<local>/<iterator>|"];
|
52 [label="Access variable R|<local>/<iterator>|"];
|
||||||
55 [label="Function call: R|<local>/<iterator>|.R|kotlin/collections/Iterator.hasNext|()"];
|
53 [label="Function call: R|<local>/<iterator>|.R|kotlin/collections/Iterator.hasNext|()"];
|
||||||
56 [label="Exit loop condition"];
|
54 [label="Exit loop condition"];
|
||||||
}
|
}
|
||||||
subgraph cluster_15 {
|
subgraph cluster_15 {
|
||||||
color=blue
|
color=blue
|
||||||
57 [label="Enter loop block"];
|
55 [label="Enter loop block"];
|
||||||
subgraph cluster_16 {
|
subgraph cluster_16 {
|
||||||
color=blue
|
color=blue
|
||||||
58 [label="Enter block"];
|
56 [label="Enter block"];
|
||||||
59 [label="Access variable R|<local>/<iterator>|"];
|
57 [label="Access variable R|<local>/<iterator>|"];
|
||||||
60 [label="Function call: R|<local>/<iterator>|.R|FakeOverride<kotlin/collections/Iterator.next: R|kotlin/Nothing|>|()"];
|
58 [label="Function call: R|<local>/<iterator>|.R|FakeOverride<kotlin/collections/Iterator.next: R|kotlin/Nothing|>|()"];
|
||||||
61 [label="Stub" style="filled" fillcolor=gray];
|
59 [label="Stub" style="filled" fillcolor=gray];
|
||||||
62 [label="Variable declaration: lval result: R|kotlin/Nothing|" style="filled" fillcolor=gray];
|
60 [label="Variable declaration: lval result: R|kotlin/Nothing|" style="filled" fillcolor=gray];
|
||||||
63 [label="Access variable R|<local>/result|" style="filled" fillcolor=gray];
|
61 [label="Access variable R|<local>/result|" style="filled" fillcolor=gray];
|
||||||
64 [label="Stub" style="filled" fillcolor=gray];
|
62 [label="Stub" style="filled" fillcolor=gray];
|
||||||
65 [label="Assignmenet: R|<local>/s|" style="filled" fillcolor=gray];
|
63 [label="Assignmenet: R|<local>/s|" style="filled" fillcolor=gray];
|
||||||
subgraph cluster_17 {
|
subgraph cluster_17 {
|
||||||
color=blue
|
color=blue
|
||||||
66 [label="Enter when" style="filled" fillcolor=gray];
|
64 [label="Enter when" style="filled" fillcolor=gray];
|
||||||
subgraph cluster_18 {
|
subgraph cluster_18 {
|
||||||
color=blue
|
color=blue
|
||||||
67 [label="Enter when branch condition " style="filled" fillcolor=gray];
|
65 [label="Enter when branch condition " style="filled" fillcolor=gray];
|
||||||
68 [label="Access variable R|<local>/result|" style="filled" fillcolor=gray];
|
66 [label="Access variable R|<local>/result|" style="filled" fillcolor=gray];
|
||||||
69 [label="Stub" style="filled" fillcolor=gray];
|
67 [label="Stub" style="filled" fillcolor=gray];
|
||||||
70 [label="Access variable <Unresolved name: b>#" style="filled" fillcolor=gray];
|
68 [label="Access variable <Unresolved name: b>#" style="filled" fillcolor=gray];
|
||||||
71 [label="Exit when branch condition" style="filled" fillcolor=gray];
|
69 [label="Exit when branch condition" style="filled" fillcolor=gray];
|
||||||
}
|
}
|
||||||
72 [label="Synthetic else branch" style="filled" fillcolor=gray];
|
70 [label="Synthetic else branch" style="filled" fillcolor=gray];
|
||||||
73 [label="Enter when branch result" style="filled" fillcolor=gray];
|
71 [label="Enter when branch result" style="filled" fillcolor=gray];
|
||||||
subgraph cluster_19 {
|
subgraph cluster_19 {
|
||||||
color=blue
|
color=blue
|
||||||
74 [label="Enter block" style="filled" fillcolor=gray];
|
72 [label="Enter block" style="filled" fillcolor=gray];
|
||||||
75 [label="Jump: break@@@[R|<local>/<iterator>|.R|kotlin/collections/Iterator.hasNext|()] " style="filled" fillcolor=gray];
|
73 [label="Jump: break@@@[R|<local>/<iterator>|.R|kotlin/collections/Iterator.hasNext|()] " style="filled" fillcolor=gray];
|
||||||
76 [label="Stub" style="filled" fillcolor=gray];
|
74 [label="Stub" style="filled" fillcolor=gray];
|
||||||
77 [label="Exit block" style="filled" fillcolor=gray];
|
75 [label="Exit block" style="filled" fillcolor=gray];
|
||||||
}
|
}
|
||||||
78 [label="Exit when branch result" style="filled" fillcolor=gray];
|
76 [label="Exit when branch result" style="filled" fillcolor=gray];
|
||||||
79 [label="Exit when" style="filled" fillcolor=gray];
|
77 [label="Exit when" style="filled" fillcolor=gray];
|
||||||
}
|
}
|
||||||
80 [label="Exit block" style="filled" fillcolor=gray];
|
78 [label="Exit block" style="filled" fillcolor=gray];
|
||||||
}
|
}
|
||||||
81 [label="Exit loop block" style="filled" fillcolor=gray];
|
79 [label="Exit loop block" style="filled" fillcolor=gray];
|
||||||
}
|
}
|
||||||
82 [label="Exit whileloop"];
|
80 [label="Exit whileloop"];
|
||||||
}
|
}
|
||||||
83 [label="Access variable R|<local>/s|"];
|
81 [label="Access variable R|<local>/s|"];
|
||||||
84 [label="Enter safe call"];
|
82 [label="Enter safe call"];
|
||||||
85 [label="Postponed enter to lambda"];
|
83 [label="Postponed enter to lambda"];
|
||||||
subgraph cluster_20 {
|
subgraph cluster_20 {
|
||||||
color=blue
|
color=blue
|
||||||
86 [label="Enter function anonymousFunction"];
|
84 [label="Enter function anonymousFunction"];
|
||||||
87 [label="Access variable R|<local>/it|"];
|
85 [label="Access variable R|<local>/it|"];
|
||||||
88 [label="Access variable R|/A.a|"];
|
86 [label="Access variable R|/A.a|"];
|
||||||
89 [label="Exit function anonymousFunction"];
|
87 [label="Exit function anonymousFunction"];
|
||||||
}
|
}
|
||||||
90 [label="Postponed exit from lambda"];
|
88 [label="Postponed exit from lambda"];
|
||||||
91 [label="Function call: R|<local>/s|?.R|kotlin/let|<R|A|, R|kotlin/Int|>(<L> = let@fun <anonymous>(it: R|A|): R|kotlin/Int| <kind=EXACTLY_ONCE> )"];
|
89 [label="Function call: R|<local>/s|?.R|kotlin/let|<R|A|, R|kotlin/Int|>(<L> = let@fun <anonymous>(it: R|A|): R|kotlin/Int| <kind=EXACTLY_ONCE> )"];
|
||||||
92 [label="Exit safe call"];
|
90 [label="Exit safe call"];
|
||||||
93 [label="Exit function test_0" style="filled" fillcolor=red];
|
91 [label="Exit function test_0" style="filled" fillcolor=red];
|
||||||
}
|
}
|
||||||
|
|
||||||
44 -> {45};
|
44 -> {45};
|
||||||
@@ -232,46 +230,44 @@ digraph smartcastToNothing_kt {
|
|||||||
51 -> {52};
|
51 -> {52};
|
||||||
52 -> {53};
|
52 -> {53};
|
||||||
53 -> {54};
|
53 -> {54};
|
||||||
54 -> {55};
|
54 -> {80 55};
|
||||||
55 -> {56};
|
55 -> {56};
|
||||||
56 -> {82 57};
|
56 -> {57};
|
||||||
57 -> {58};
|
57 -> {58};
|
||||||
58 -> {59};
|
58 -> {91};
|
||||||
59 -> {60};
|
58 -> {59} [style=dotted];
|
||||||
60 -> {93};
|
59 -> {60} [style=dotted];
|
||||||
60 -> {61} [style=dotted];
|
60 -> {61} [style=dotted];
|
||||||
61 -> {62} [style=dotted];
|
61 -> {91 62} [style=dotted];
|
||||||
62 -> {63} [style=dotted];
|
62 -> {63} [style=dotted];
|
||||||
63 -> {93 64} [style=dotted];
|
63 -> {64} [style=dotted];
|
||||||
64 -> {65} [style=dotted];
|
64 -> {65} [style=dotted];
|
||||||
65 -> {66} [style=dotted];
|
65 -> {66} [style=dotted];
|
||||||
66 -> {67} [style=dotted];
|
66 -> {91 67} [style=dotted];
|
||||||
67 -> {68} [style=dotted];
|
67 -> {68} [style=dotted];
|
||||||
68 -> {93 69} [style=dotted];
|
68 -> {69} [style=dotted];
|
||||||
69 -> {70} [style=dotted];
|
69 -> {71 70} [style=dotted];
|
||||||
70 -> {71} [style=dotted];
|
70 -> {77} [style=dotted];
|
||||||
71 -> {73 72} [style=dotted];
|
71 -> {72} [style=dotted];
|
||||||
72 -> {79} [style=dotted];
|
72 -> {73} [style=dotted];
|
||||||
73 -> {74} [style=dotted];
|
73 -> {80 74} [style=dotted];
|
||||||
74 -> {75} [style=dotted];
|
74 -> {75} [style=dotted];
|
||||||
75 -> {82 76} [style=dotted];
|
75 -> {76} [style=dotted];
|
||||||
76 -> {77} [style=dotted];
|
76 -> {77} [style=dotted];
|
||||||
77 -> {78} [style=dotted];
|
77 -> {78} [style=dotted];
|
||||||
78 -> {79} [style=dotted];
|
78 -> {79} [style=dotted];
|
||||||
79 -> {80} [style=dotted];
|
79 -> {51} [style=dotted];
|
||||||
80 -> {81} [style=dotted];
|
80 -> {81};
|
||||||
81 -> {53} [style=dotted];
|
81 -> {82 90};
|
||||||
82 -> {83};
|
82 -> {83};
|
||||||
83 -> {84 92};
|
83 -> {84};
|
||||||
|
83 -> {88} [color=red];
|
||||||
84 -> {85};
|
84 -> {85};
|
||||||
85 -> {86};
|
85 -> {86};
|
||||||
85 -> {90} [color=red];
|
|
||||||
86 -> {87};
|
86 -> {87};
|
||||||
87 -> {88};
|
87 -> {88} [color=green];
|
||||||
88 -> {89};
|
88 -> {89};
|
||||||
89 -> {90} [color=green];
|
89 -> {90};
|
||||||
90 -> {91};
|
90 -> {91} [style=dotted];
|
||||||
91 -> {92};
|
|
||||||
92 -> {93} [style=dotted];
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -30,8 +30,7 @@ FILE: smartcastToNothing.kt
|
|||||||
}
|
}
|
||||||
public final fun test_0(results: R|kotlin/collections/List<kotlin/Nothing>|): R|kotlin/Unit| {
|
public final fun test_0(results: R|kotlin/collections/List<kotlin/Nothing>|): R|kotlin/Unit| {
|
||||||
lvar s: R|A?| = Null(null)
|
lvar s: R|A?| = Null(null)
|
||||||
lval <range>: R|kotlin/collections/List<kotlin/Nothing>| = R|<local>/results|
|
lval <iterator>: R|kotlin/collections/Iterator<kotlin/Nothing>| = R|<local>/results|.R|FakeOverride<kotlin/collections/List.iterator: R|kotlin/collections/Iterator<kotlin/Nothing>|>|()
|
||||||
lval <iterator>: R|kotlin/collections/Iterator<kotlin/Nothing>| = R|<local>/<range>|.R|FakeOverride<kotlin/collections/List.iterator: R|kotlin/collections/Iterator<kotlin/Nothing>|>|()
|
|
||||||
while(R|<local>/<iterator>|.R|kotlin/collections/Iterator.hasNext|()) {
|
while(R|<local>/<iterator>|.R|kotlin/collections/Iterator.hasNext|()) {
|
||||||
lval result: R|kotlin/Nothing| = R|<local>/<iterator>|.R|FakeOverride<kotlin/collections/Iterator.next: R|kotlin/Nothing|>|()
|
lval result: R|kotlin/Nothing| = R|<local>/<iterator>|.R|FakeOverride<kotlin/collections/Iterator.next: R|kotlin/Nothing|>|()
|
||||||
R|<local>/s| = R|<local>/result|
|
R|<local>/s| = R|<local>/result|
|
||||||
|
|||||||
@@ -9,8 +9,7 @@ FILE: varargInPrimaryConstructor.kt
|
|||||||
|
|
||||||
}
|
}
|
||||||
public final fun test_1(foo: R|Foo|): R|kotlin/Unit| {
|
public final fun test_1(foo: R|Foo|): R|kotlin/Unit| {
|
||||||
lval <range>: R|kotlin/Array<out kotlin/String>| = R|<local>/foo|.R|/Foo.strings|
|
lval <iterator>: R|kotlin/collections/Iterator<kotlin/String>| = R|<local>/foo|.R|/Foo.strings|.R|FakeOverride<kotlin/Array.iterator: R|kotlin/collections/Iterator<kotlin/String>|>|()
|
||||||
lval <iterator>: R|kotlin/collections/Iterator<kotlin/String>| = R|<local>/<range>|.R|FakeOverride<kotlin/Array.iterator: R|kotlin/collections/Iterator<kotlin/String>|>|()
|
|
||||||
while(R|<local>/<iterator>|.R|kotlin/collections/Iterator.hasNext|()) {
|
while(R|<local>/<iterator>|.R|kotlin/collections/Iterator.hasNext|()) {
|
||||||
lval s: R|kotlin/String| = R|<local>/<iterator>|.R|FakeOverride<kotlin/collections/Iterator.next: R|kotlin/String|>|()
|
lval s: R|kotlin/String| = R|<local>/<iterator>|.R|FakeOverride<kotlin/collections/Iterator.next: R|kotlin/String|>|()
|
||||||
R|<local>/s|.R|kotlin/String.length|
|
R|<local>/s|.R|kotlin/String.length|
|
||||||
@@ -18,8 +17,7 @@ FILE: varargInPrimaryConstructor.kt
|
|||||||
|
|
||||||
}
|
}
|
||||||
public final fun test_2(vararg strings: R|kotlin/Array<kotlin/String>|): R|kotlin/Unit| {
|
public final fun test_2(vararg strings: R|kotlin/Array<kotlin/String>|): R|kotlin/Unit| {
|
||||||
lval <range>: R|kotlin/Array<kotlin/String>| = R|<local>/strings|
|
lval <iterator>: R|kotlin/collections/Iterator<kotlin/String>| = R|<local>/strings|.R|FakeOverride<kotlin/Array.iterator: R|kotlin/collections/Iterator<kotlin/String>|>|()
|
||||||
lval <iterator>: R|kotlin/collections/Iterator<kotlin/String>| = R|<local>/<range>|.R|FakeOverride<kotlin/Array.iterator: R|kotlin/collections/Iterator<kotlin/String>|>|()
|
|
||||||
while(R|<local>/<iterator>|.R|kotlin/collections/Iterator.hasNext|()) {
|
while(R|<local>/<iterator>|.R|kotlin/collections/Iterator.hasNext|()) {
|
||||||
lval s: R|kotlin/String| = R|<local>/<iterator>|.R|FakeOverride<kotlin/collections/Iterator.next: R|kotlin/String|>|()
|
lval s: R|kotlin/String| = R|<local>/<iterator>|.R|FakeOverride<kotlin/collections/Iterator.next: R|kotlin/String|>|()
|
||||||
R|<local>/s|.R|kotlin/String.length|
|
R|<local>/s|.R|kotlin/String.length|
|
||||||
|
|||||||
@@ -23,8 +23,7 @@ FILE: components.kt
|
|||||||
|
|
||||||
}
|
}
|
||||||
public final fun foo(list: R|kotlin/collections/List<D>|): R|kotlin/Unit| {
|
public final fun foo(list: R|kotlin/collections/List<D>|): R|kotlin/Unit| {
|
||||||
lval <range>: R|kotlin/collections/List<D>| = R|<local>/list|
|
lval <iterator>: R|kotlin/collections/Iterator<D>| = R|<local>/list|.R|FakeOverride<kotlin/collections/List.iterator: R|kotlin/collections/Iterator<D>|>|()
|
||||||
lval <iterator>: R|kotlin/collections/Iterator<D>| = R|<local>/<range>|.R|FakeOverride<kotlin/collections/List.iterator: R|kotlin/collections/Iterator<D>|>|()
|
|
||||||
while(R|<local>/<iterator>|.R|kotlin/collections/Iterator.hasNext|()) {
|
while(R|<local>/<iterator>|.R|kotlin/collections/Iterator.hasNext|()) {
|
||||||
lval <destruct>: R|D| = R|<local>/<iterator>|.R|FakeOverride<kotlin/collections/Iterator.next: R|D|>|()
|
lval <destruct>: R|D| = R|<local>/<iterator>|.R|FakeOverride<kotlin/collections/Iterator.next: R|D|>|()
|
||||||
lval x: R|kotlin/Int| = R|<local>/<destruct>|.R|/D.component1|()
|
lval x: R|kotlin/Int| = R|<local>/<destruct>|.R|/D.component1|()
|
||||||
|
|||||||
+36
-40
@@ -47,60 +47,56 @@ FILE fqName:<root> fileName:/breakContinueInLoopHeader.kt
|
|||||||
WHILE label=L origin=WHILE_LOOP
|
WHILE label=L origin=WHILE_LOOP
|
||||||
condition: CONST Boolean type=kotlin.Boolean value=true
|
condition: CONST Boolean type=kotlin.Boolean value=true
|
||||||
body: BLOCK type=kotlin.Unit origin=null
|
body: BLOCK type=kotlin.Unit origin=null
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_2 type:kotlin.collections.List<kotlin.String> [val]
|
VAR IR_TEMPORARY_VARIABLE name:tmp_2 type:kotlin.collections.Iterator<kotlin.String> [val]
|
||||||
BLOCK type=kotlin.collections.List<kotlin.String> origin=ELVIS
|
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_3 type:kotlin.collections.List<kotlin.String>? [val]
|
|
||||||
GET_VAR 'ss: kotlin.collections.List<kotlin.String>? declared in <root>.test3' type=kotlin.collections.List<kotlin.String>? origin=null
|
|
||||||
WHEN type=kotlin.collections.List<kotlin.String> origin=ELVIS
|
|
||||||
BRANCH
|
|
||||||
if: CALL 'public final fun EQEQ (arg0: kotlin.Any?, arg1: kotlin.Any?): kotlin.Boolean declared in kotlin.internal.ir' type=kotlin.Boolean origin=EQEQ
|
|
||||||
arg0: GET_VAR 'val tmp_3: kotlin.collections.List<kotlin.String>? [val] declared in <root>.test3' type=kotlin.collections.List<kotlin.String>? origin=null
|
|
||||||
arg1: CONST Null type=kotlin.Nothing? value=null
|
|
||||||
then: CONTINUE label=L loop.label=L
|
|
||||||
BRANCH
|
|
||||||
if: CONST Boolean type=kotlin.Boolean value=true
|
|
||||||
then: TYPE_OP type=kotlin.collections.List<kotlin.String> origin=IMPLICIT_CAST typeOperand=kotlin.collections.List<kotlin.String>
|
|
||||||
GET_VAR 'val tmp_3: kotlin.collections.List<kotlin.String>? [val] declared in <root>.test3' type=kotlin.collections.List<kotlin.String>? origin=null
|
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_4 type:kotlin.collections.Iterator<kotlin.String> [val]
|
|
||||||
CALL 'public abstract fun iterator (): kotlin.collections.Iterator<kotlin.String> [operator] declared in kotlin.collections.List' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
CALL 'public abstract fun iterator (): kotlin.collections.Iterator<kotlin.String> [operator] declared in kotlin.collections.List' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
$this: GET_VAR 'val tmp_2: kotlin.collections.List<kotlin.String> [val] declared in <root>.test3' type=kotlin.collections.List<kotlin.String> origin=null
|
$this: BLOCK type=kotlin.collections.List<kotlin.String> origin=ELVIS
|
||||||
|
VAR IR_TEMPORARY_VARIABLE name:tmp_3 type:kotlin.collections.List<kotlin.String>? [val]
|
||||||
|
GET_VAR 'ss: kotlin.collections.List<kotlin.String>? declared in <root>.test3' type=kotlin.collections.List<kotlin.String>? origin=null
|
||||||
|
WHEN type=kotlin.collections.List<kotlin.String> origin=ELVIS
|
||||||
|
BRANCH
|
||||||
|
if: CALL 'public final fun EQEQ (arg0: kotlin.Any?, arg1: kotlin.Any?): kotlin.Boolean declared in kotlin.internal.ir' type=kotlin.Boolean origin=EQEQ
|
||||||
|
arg0: GET_VAR 'val tmp_3: kotlin.collections.List<kotlin.String>? [val] declared in <root>.test3' type=kotlin.collections.List<kotlin.String>? origin=null
|
||||||
|
arg1: CONST Null type=kotlin.Nothing? value=null
|
||||||
|
then: CONTINUE label=L loop.label=L
|
||||||
|
BRANCH
|
||||||
|
if: CONST Boolean type=kotlin.Boolean value=true
|
||||||
|
then: TYPE_OP type=kotlin.collections.List<kotlin.String> origin=IMPLICIT_CAST typeOperand=kotlin.collections.List<kotlin.String>
|
||||||
|
GET_VAR 'val tmp_3: kotlin.collections.List<kotlin.String>? [val] declared in <root>.test3' type=kotlin.collections.List<kotlin.String>? origin=null
|
||||||
WHILE label=L2 origin=FOR_LOOP_INNER_WHILE
|
WHILE label=L2 origin=FOR_LOOP_INNER_WHILE
|
||||||
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
||||||
$this: GET_VAR 'val tmp_4: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.test3' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
$this: GET_VAR 'val tmp_2: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.test3' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
body: BLOCK type=kotlin.Unit origin=null
|
body: BLOCK type=kotlin.Unit origin=null
|
||||||
VAR name:s type:kotlin.String [val]
|
VAR name:s type:kotlin.String [val]
|
||||||
CALL 'public abstract fun next (): T of kotlin.collections.Iterator [operator] declared in kotlin.collections.Iterator' type=kotlin.String origin=null
|
CALL 'public abstract fun next (): T of kotlin.collections.Iterator [operator] declared in kotlin.collections.Iterator' type=kotlin.String origin=null
|
||||||
$this: GET_VAR 'val tmp_4: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.test3' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
$this: GET_VAR 'val tmp_2: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.test3' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
FUN name:test4 visibility:public modality:FINAL <> (ss:kotlin.collections.List<kotlin.String>?) returnType:kotlin.Unit
|
FUN name:test4 visibility:public modality:FINAL <> (ss:kotlin.collections.List<kotlin.String>?) returnType:kotlin.Unit
|
||||||
VALUE_PARAMETER name:ss index:0 type:kotlin.collections.List<kotlin.String>?
|
VALUE_PARAMETER name:ss index:0 type:kotlin.collections.List<kotlin.String>?
|
||||||
BLOCK_BODY
|
BLOCK_BODY
|
||||||
WHILE label=L origin=WHILE_LOOP
|
WHILE label=L origin=WHILE_LOOP
|
||||||
condition: CONST Boolean type=kotlin.Boolean value=true
|
condition: CONST Boolean type=kotlin.Boolean value=true
|
||||||
body: BLOCK type=kotlin.Unit origin=null
|
body: BLOCK type=kotlin.Unit origin=null
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_5 type:kotlin.collections.List<kotlin.String> [val]
|
VAR IR_TEMPORARY_VARIABLE name:tmp_4 type:kotlin.collections.Iterator<kotlin.String> [val]
|
||||||
BLOCK type=kotlin.collections.List<kotlin.String> origin=ELVIS
|
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_6 type:kotlin.collections.List<kotlin.String>? [val]
|
|
||||||
GET_VAR 'ss: kotlin.collections.List<kotlin.String>? declared in <root>.test4' type=kotlin.collections.List<kotlin.String>? origin=null
|
|
||||||
WHEN type=kotlin.collections.List<kotlin.String> origin=ELVIS
|
|
||||||
BRANCH
|
|
||||||
if: CALL 'public final fun EQEQ (arg0: kotlin.Any?, arg1: kotlin.Any?): kotlin.Boolean declared in kotlin.internal.ir' type=kotlin.Boolean origin=EQEQ
|
|
||||||
arg0: GET_VAR 'val tmp_6: kotlin.collections.List<kotlin.String>? [val] declared in <root>.test4' type=kotlin.collections.List<kotlin.String>? origin=null
|
|
||||||
arg1: CONST Null type=kotlin.Nothing? value=null
|
|
||||||
then: BREAK label=L loop.label=L
|
|
||||||
BRANCH
|
|
||||||
if: CONST Boolean type=kotlin.Boolean value=true
|
|
||||||
then: TYPE_OP type=kotlin.collections.List<kotlin.String> origin=IMPLICIT_CAST typeOperand=kotlin.collections.List<kotlin.String>
|
|
||||||
GET_VAR 'val tmp_6: kotlin.collections.List<kotlin.String>? [val] declared in <root>.test4' type=kotlin.collections.List<kotlin.String>? origin=null
|
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_7 type:kotlin.collections.Iterator<kotlin.String> [val]
|
|
||||||
CALL 'public abstract fun iterator (): kotlin.collections.Iterator<kotlin.String> [operator] declared in kotlin.collections.List' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
CALL 'public abstract fun iterator (): kotlin.collections.Iterator<kotlin.String> [operator] declared in kotlin.collections.List' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
$this: GET_VAR 'val tmp_5: kotlin.collections.List<kotlin.String> [val] declared in <root>.test4' type=kotlin.collections.List<kotlin.String> origin=null
|
$this: BLOCK type=kotlin.collections.List<kotlin.String> origin=ELVIS
|
||||||
|
VAR IR_TEMPORARY_VARIABLE name:tmp_5 type:kotlin.collections.List<kotlin.String>? [val]
|
||||||
|
GET_VAR 'ss: kotlin.collections.List<kotlin.String>? declared in <root>.test4' type=kotlin.collections.List<kotlin.String>? origin=null
|
||||||
|
WHEN type=kotlin.collections.List<kotlin.String> origin=ELVIS
|
||||||
|
BRANCH
|
||||||
|
if: CALL 'public final fun EQEQ (arg0: kotlin.Any?, arg1: kotlin.Any?): kotlin.Boolean declared in kotlin.internal.ir' type=kotlin.Boolean origin=EQEQ
|
||||||
|
arg0: GET_VAR 'val tmp_5: kotlin.collections.List<kotlin.String>? [val] declared in <root>.test4' type=kotlin.collections.List<kotlin.String>? origin=null
|
||||||
|
arg1: CONST Null type=kotlin.Nothing? value=null
|
||||||
|
then: BREAK label=L loop.label=L
|
||||||
|
BRANCH
|
||||||
|
if: CONST Boolean type=kotlin.Boolean value=true
|
||||||
|
then: TYPE_OP type=kotlin.collections.List<kotlin.String> origin=IMPLICIT_CAST typeOperand=kotlin.collections.List<kotlin.String>
|
||||||
|
GET_VAR 'val tmp_5: kotlin.collections.List<kotlin.String>? [val] declared in <root>.test4' type=kotlin.collections.List<kotlin.String>? origin=null
|
||||||
WHILE label=L2 origin=FOR_LOOP_INNER_WHILE
|
WHILE label=L2 origin=FOR_LOOP_INNER_WHILE
|
||||||
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
||||||
$this: GET_VAR 'val tmp_7: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.test4' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
$this: GET_VAR 'val tmp_4: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.test4' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
body: BLOCK type=kotlin.Unit origin=null
|
body: BLOCK type=kotlin.Unit origin=null
|
||||||
VAR name:s type:kotlin.String [val]
|
VAR name:s type:kotlin.String [val]
|
||||||
CALL 'public abstract fun next (): T of kotlin.collections.Iterator [operator] declared in kotlin.collections.Iterator' type=kotlin.String origin=null
|
CALL 'public abstract fun next (): T of kotlin.collections.Iterator [operator] declared in kotlin.collections.Iterator' type=kotlin.String origin=null
|
||||||
$this: GET_VAR 'val tmp_7: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.test4' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
$this: GET_VAR 'val tmp_4: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.test4' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
FUN name:test5 visibility:public modality:FINAL <> () returnType:kotlin.Unit
|
FUN name:test5 visibility:public modality:FINAL <> () returnType:kotlin.Unit
|
||||||
BLOCK_BODY
|
BLOCK_BODY
|
||||||
VAR name:i type:kotlin.Int [var]
|
VAR name:i type:kotlin.Int [var]
|
||||||
@@ -108,21 +104,21 @@ FILE fqName:<root> fileName:/breakContinueInLoopHeader.kt
|
|||||||
WHILE label=Outer origin=WHILE_LOOP
|
WHILE label=Outer origin=WHILE_LOOP
|
||||||
condition: CONST Boolean type=kotlin.Boolean value=true
|
condition: CONST Boolean type=kotlin.Boolean value=true
|
||||||
body: BLOCK type=kotlin.Unit origin=null
|
body: BLOCK type=kotlin.Unit origin=null
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_8 type:kotlin.Int [val]
|
VAR IR_TEMPORARY_VARIABLE name:tmp_6 type:kotlin.Int [val]
|
||||||
GET_VAR 'var i: kotlin.Int [var] declared in <root>.test5' type=kotlin.Int origin=null
|
GET_VAR 'var i: kotlin.Int [var] declared in <root>.test5' type=kotlin.Int origin=null
|
||||||
SET_VAR 'var i: kotlin.Int [var] declared in <root>.test5' type=kotlin.Unit origin=null
|
SET_VAR 'var i: kotlin.Int [var] declared in <root>.test5' type=kotlin.Unit origin=null
|
||||||
CALL 'public final fun inc (): kotlin.Int [operator] declared in kotlin.Int' type=kotlin.Int origin=null
|
CALL 'public final fun inc (): kotlin.Int [operator] declared in kotlin.Int' type=kotlin.Int origin=null
|
||||||
$this: GET_VAR 'val tmp_8: kotlin.Int [val] declared in <root>.test5' type=kotlin.Int origin=null
|
$this: GET_VAR 'val tmp_6: kotlin.Int [val] declared in <root>.test5' type=kotlin.Int origin=null
|
||||||
GET_VAR 'var i: kotlin.Int [var] declared in <root>.test5' type=kotlin.Int origin=null
|
GET_VAR 'var i: kotlin.Int [var] declared in <root>.test5' type=kotlin.Int origin=null
|
||||||
VAR name:j type:kotlin.Int [var]
|
VAR name:j type:kotlin.Int [var]
|
||||||
CONST Int type=kotlin.Int value=0
|
CONST Int type=kotlin.Int value=0
|
||||||
DO_WHILE label=Inner origin=DO_WHILE_LOOP
|
DO_WHILE label=Inner origin=DO_WHILE_LOOP
|
||||||
body: BLOCK type=kotlin.Int origin=null
|
body: BLOCK type=kotlin.Int origin=null
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_9 type:kotlin.Int [val]
|
VAR IR_TEMPORARY_VARIABLE name:tmp_7 type:kotlin.Int [val]
|
||||||
GET_VAR 'var j: kotlin.Int [var] declared in <root>.test5' type=kotlin.Int origin=null
|
GET_VAR 'var j: kotlin.Int [var] declared in <root>.test5' type=kotlin.Int origin=null
|
||||||
SET_VAR 'var j: kotlin.Int [var] declared in <root>.test5' type=kotlin.Unit origin=null
|
SET_VAR 'var j: kotlin.Int [var] declared in <root>.test5' type=kotlin.Unit origin=null
|
||||||
CALL 'public final fun inc (): kotlin.Int [operator] declared in kotlin.Int' type=kotlin.Int origin=null
|
CALL 'public final fun inc (): kotlin.Int [operator] declared in kotlin.Int' type=kotlin.Int origin=null
|
||||||
$this: GET_VAR 'val tmp_9: kotlin.Int [val] declared in <root>.test5' type=kotlin.Int origin=null
|
$this: GET_VAR 'val tmp_7: kotlin.Int [val] declared in <root>.test5' type=kotlin.Int origin=null
|
||||||
GET_VAR 'var j: kotlin.Int [var] declared in <root>.test5' type=kotlin.Int origin=null
|
GET_VAR 'var j: kotlin.Int [var] declared in <root>.test5' type=kotlin.Int origin=null
|
||||||
condition: WHEN type=kotlin.Boolean origin=IF
|
condition: WHEN type=kotlin.Boolean origin=IF
|
||||||
BRANCH
|
BRANCH
|
||||||
|
|||||||
@@ -12,18 +12,16 @@ FILE fqName:<root> fileName:/breakContinueInWhen.kt
|
|||||||
GET_VAR 'i: kotlin.Int declared in <root>.testBreakFor.<anonymous>' type=kotlin.Int origin=null
|
GET_VAR 'i: kotlin.Int declared in <root>.testBreakFor.<anonymous>' type=kotlin.Int origin=null
|
||||||
VAR name:k type:kotlin.Int [var]
|
VAR name:k type:kotlin.Int [var]
|
||||||
CONST Int type=kotlin.Int value=0
|
CONST Int type=kotlin.Int value=0
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_0 type:kotlin.IntArray [val]
|
VAR IR_TEMPORARY_VARIABLE name:tmp_0 type:kotlin.collections.IntIterator [val]
|
||||||
GET_VAR 'val xs: kotlin.IntArray [val] declared in <root>.testBreakFor' type=kotlin.IntArray origin=null
|
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_1 type:kotlin.collections.IntIterator [val]
|
|
||||||
CALL 'public final fun iterator (): kotlin.collections.IntIterator [operator] declared in kotlin.IntArray' type=kotlin.collections.IntIterator origin=null
|
CALL 'public final fun iterator (): kotlin.collections.IntIterator [operator] declared in kotlin.IntArray' type=kotlin.collections.IntIterator origin=null
|
||||||
$this: GET_VAR 'val tmp_0: kotlin.IntArray [val] declared in <root>.testBreakFor' type=kotlin.IntArray origin=null
|
$this: GET_VAR 'val xs: kotlin.IntArray [val] declared in <root>.testBreakFor' type=kotlin.IntArray origin=null
|
||||||
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
||||||
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
||||||
$this: GET_VAR 'val tmp_1: kotlin.collections.IntIterator [val] declared in <root>.testBreakFor' type=kotlin.collections.IntIterator origin=null
|
$this: GET_VAR 'val tmp_0: kotlin.collections.IntIterator [val] declared in <root>.testBreakFor' type=kotlin.collections.IntIterator origin=null
|
||||||
body: BLOCK type=kotlin.Unit origin=null
|
body: BLOCK type=kotlin.Unit origin=null
|
||||||
VAR name:x type:kotlin.Int [val]
|
VAR name:x type:kotlin.Int [val]
|
||||||
CALL 'public final fun next (): kotlin.Int [operator] declared in kotlin.collections.IntIterator' type=kotlin.Int origin=null
|
CALL 'public final fun next (): kotlin.Int [operator] declared in kotlin.collections.IntIterator' type=kotlin.Int origin=null
|
||||||
$this: GET_VAR 'val tmp_1: kotlin.collections.IntIterator [val] declared in <root>.testBreakFor' type=kotlin.collections.IntIterator origin=null
|
$this: GET_VAR 'val tmp_0: kotlin.collections.IntIterator [val] declared in <root>.testBreakFor' type=kotlin.collections.IntIterator origin=null
|
||||||
WHEN type=kotlin.Unit origin=WHEN
|
WHEN type=kotlin.Unit origin=WHEN
|
||||||
BRANCH
|
BRANCH
|
||||||
if: CALL 'public final fun greater (arg0: kotlin.Int, arg1: kotlin.Int): kotlin.Boolean declared in kotlin.internal.ir' type=kotlin.Boolean origin=GT
|
if: CALL 'public final fun greater (arg0: kotlin.Int, arg1: kotlin.Int): kotlin.Boolean declared in kotlin.internal.ir' type=kotlin.Boolean origin=GT
|
||||||
@@ -71,18 +69,16 @@ FILE fqName:<root> fileName:/breakContinueInWhen.kt
|
|||||||
GET_VAR 'i: kotlin.Int declared in <root>.testContinueFor.<anonymous>' type=kotlin.Int origin=null
|
GET_VAR 'i: kotlin.Int declared in <root>.testContinueFor.<anonymous>' type=kotlin.Int origin=null
|
||||||
VAR name:k type:kotlin.Int [var]
|
VAR name:k type:kotlin.Int [var]
|
||||||
CONST Int type=kotlin.Int value=0
|
CONST Int type=kotlin.Int value=0
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_2 type:kotlin.IntArray [val]
|
VAR IR_TEMPORARY_VARIABLE name:tmp_1 type:kotlin.collections.IntIterator [val]
|
||||||
GET_VAR 'val xs: kotlin.IntArray [val] declared in <root>.testContinueFor' type=kotlin.IntArray origin=null
|
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_3 type:kotlin.collections.IntIterator [val]
|
|
||||||
CALL 'public final fun iterator (): kotlin.collections.IntIterator [operator] declared in kotlin.IntArray' type=kotlin.collections.IntIterator origin=null
|
CALL 'public final fun iterator (): kotlin.collections.IntIterator [operator] declared in kotlin.IntArray' type=kotlin.collections.IntIterator origin=null
|
||||||
$this: GET_VAR 'val tmp_2: kotlin.IntArray [val] declared in <root>.testContinueFor' type=kotlin.IntArray origin=null
|
$this: GET_VAR 'val xs: kotlin.IntArray [val] declared in <root>.testContinueFor' type=kotlin.IntArray origin=null
|
||||||
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
||||||
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
||||||
$this: GET_VAR 'val tmp_3: kotlin.collections.IntIterator [val] declared in <root>.testContinueFor' type=kotlin.collections.IntIterator origin=null
|
$this: GET_VAR 'val tmp_1: kotlin.collections.IntIterator [val] declared in <root>.testContinueFor' type=kotlin.collections.IntIterator origin=null
|
||||||
body: BLOCK type=kotlin.Unit origin=null
|
body: BLOCK type=kotlin.Unit origin=null
|
||||||
VAR name:x type:kotlin.Int [val]
|
VAR name:x type:kotlin.Int [val]
|
||||||
CALL 'public final fun next (): kotlin.Int [operator] declared in kotlin.collections.IntIterator' type=kotlin.Int origin=null
|
CALL 'public final fun next (): kotlin.Int [operator] declared in kotlin.collections.IntIterator' type=kotlin.Int origin=null
|
||||||
$this: GET_VAR 'val tmp_3: kotlin.collections.IntIterator [val] declared in <root>.testContinueFor' type=kotlin.collections.IntIterator origin=null
|
$this: GET_VAR 'val tmp_1: kotlin.collections.IntIterator [val] declared in <root>.testContinueFor' type=kotlin.collections.IntIterator origin=null
|
||||||
WHEN type=kotlin.Unit origin=WHEN
|
WHEN type=kotlin.Unit origin=WHEN
|
||||||
BRANCH
|
BRANCH
|
||||||
if: CALL 'public final fun greater (arg0: kotlin.Int, arg1: kotlin.Int): kotlin.Boolean declared in kotlin.internal.ir' type=kotlin.Boolean origin=GT
|
if: CALL 'public final fun greater (arg0: kotlin.Int, arg1: kotlin.Int): kotlin.Boolean declared in kotlin.internal.ir' type=kotlin.Boolean origin=GT
|
||||||
@@ -111,11 +107,11 @@ FILE fqName:<root> fileName:/breakContinueInWhen.kt
|
|||||||
CONST String type=kotlin.String value=""
|
CONST String type=kotlin.String value=""
|
||||||
DO_WHILE label=null origin=DO_WHILE_LOOP
|
DO_WHILE label=null origin=DO_WHILE_LOOP
|
||||||
body: BLOCK type=kotlin.Unit origin=null
|
body: BLOCK type=kotlin.Unit origin=null
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_4 type:kotlin.Int [val]
|
VAR IR_TEMPORARY_VARIABLE name:tmp_2 type:kotlin.Int [val]
|
||||||
GET_VAR 'var k: kotlin.Int [var] declared in <root>.testContinueDoWhile' type=kotlin.Int origin=null
|
GET_VAR 'var k: kotlin.Int [var] declared in <root>.testContinueDoWhile' type=kotlin.Int origin=null
|
||||||
SET_VAR 'var k: kotlin.Int [var] declared in <root>.testContinueDoWhile' type=kotlin.Unit origin=null
|
SET_VAR 'var k: kotlin.Int [var] declared in <root>.testContinueDoWhile' type=kotlin.Unit origin=null
|
||||||
CALL 'public final fun inc (): kotlin.Int [operator] declared in kotlin.Int' type=kotlin.Int origin=null
|
CALL 'public final fun inc (): kotlin.Int [operator] declared in kotlin.Int' type=kotlin.Int origin=null
|
||||||
$this: GET_VAR 'val tmp_4: kotlin.Int [val] declared in <root>.testContinueDoWhile' type=kotlin.Int origin=null
|
$this: GET_VAR 'val tmp_2: kotlin.Int [val] declared in <root>.testContinueDoWhile' type=kotlin.Int origin=null
|
||||||
GET_VAR 'var k: kotlin.Int [var] declared in <root>.testContinueDoWhile' type=kotlin.Int origin=null
|
GET_VAR 'var k: kotlin.Int [var] declared in <root>.testContinueDoWhile' type=kotlin.Int origin=null
|
||||||
WHEN type=kotlin.Unit origin=WHEN
|
WHEN type=kotlin.Unit origin=WHEN
|
||||||
BRANCH
|
BRANCH
|
||||||
|
|||||||
+4
-6
@@ -4,18 +4,16 @@ FILE fqName:<root> fileName:/withVarargViewedAsArray.kt
|
|||||||
BLOCK_BODY
|
BLOCK_BODY
|
||||||
VAR name:result type:kotlin.Int [var]
|
VAR name:result type:kotlin.Int [var]
|
||||||
CONST Int type=kotlin.Int value=0
|
CONST Int type=kotlin.Int value=0
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_0 type:kotlin.IntArray [val]
|
VAR IR_TEMPORARY_VARIABLE name:tmp_0 type:kotlin.collections.IntIterator [val]
|
||||||
GET_VAR 'args: kotlin.IntArray [vararg] declared in <root>.sum' type=kotlin.IntArray origin=null
|
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_1 type:kotlin.collections.IntIterator [val]
|
|
||||||
CALL 'public final fun iterator (): kotlin.collections.IntIterator [operator] declared in kotlin.IntArray' type=kotlin.collections.IntIterator origin=null
|
CALL 'public final fun iterator (): kotlin.collections.IntIterator [operator] declared in kotlin.IntArray' type=kotlin.collections.IntIterator origin=null
|
||||||
$this: GET_VAR 'val tmp_0: kotlin.IntArray [val] declared in <root>.sum' type=kotlin.IntArray origin=null
|
$this: GET_VAR 'args: kotlin.IntArray [vararg] declared in <root>.sum' type=kotlin.IntArray origin=null
|
||||||
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
||||||
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
||||||
$this: GET_VAR 'val tmp_1: kotlin.collections.IntIterator [val] declared in <root>.sum' type=kotlin.collections.IntIterator origin=null
|
$this: GET_VAR 'val tmp_0: kotlin.collections.IntIterator [val] declared in <root>.sum' type=kotlin.collections.IntIterator origin=null
|
||||||
body: BLOCK type=kotlin.Unit origin=null
|
body: BLOCK type=kotlin.Unit origin=null
|
||||||
VAR name:arg type:kotlin.Int [val]
|
VAR name:arg type:kotlin.Int [val]
|
||||||
CALL 'public final fun next (): kotlin.Int [operator] declared in kotlin.collections.IntIterator' type=kotlin.Int origin=null
|
CALL 'public final fun next (): kotlin.Int [operator] declared in kotlin.collections.IntIterator' type=kotlin.Int origin=null
|
||||||
$this: GET_VAR 'val tmp_1: kotlin.collections.IntIterator [val] declared in <root>.sum' type=kotlin.collections.IntIterator origin=null
|
$this: GET_VAR 'val tmp_0: kotlin.collections.IntIterator [val] declared in <root>.sum' type=kotlin.collections.IntIterator origin=null
|
||||||
SET_VAR 'var result: kotlin.Int [var] declared in <root>.sum' type=kotlin.Unit origin=null
|
SET_VAR 'var result: kotlin.Int [var] declared in <root>.sum' type=kotlin.Unit origin=null
|
||||||
CALL 'public final fun plus (other: kotlin.Int): kotlin.Int [operator] declared in kotlin.Int' type=kotlin.Int origin=null
|
CALL 'public final fun plus (other: kotlin.Int): kotlin.Int [operator] declared in kotlin.Int' type=kotlin.Int origin=null
|
||||||
$this: GET_VAR 'var result: kotlin.Int [var] declared in <root>.sum' type=kotlin.Int origin=null
|
$this: GET_VAR 'var result: kotlin.Int [var] declared in <root>.sum' type=kotlin.Int origin=null
|
||||||
|
|||||||
+21
-29
@@ -2,73 +2,65 @@ FILE fqName:<root> fileName:/for.kt
|
|||||||
FUN name:testEmpty visibility:public modality:FINAL <> (ss:kotlin.collections.List<kotlin.String>) returnType:kotlin.Unit
|
FUN name:testEmpty visibility:public modality:FINAL <> (ss:kotlin.collections.List<kotlin.String>) returnType:kotlin.Unit
|
||||||
VALUE_PARAMETER name:ss index:0 type:kotlin.collections.List<kotlin.String>
|
VALUE_PARAMETER name:ss index:0 type:kotlin.collections.List<kotlin.String>
|
||||||
BLOCK_BODY
|
BLOCK_BODY
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_0 type:kotlin.collections.List<kotlin.String> [val]
|
VAR IR_TEMPORARY_VARIABLE name:tmp_0 type:kotlin.collections.Iterator<kotlin.String> [val]
|
||||||
GET_VAR 'ss: kotlin.collections.List<kotlin.String> declared in <root>.testEmpty' type=kotlin.collections.List<kotlin.String> origin=null
|
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_1 type:kotlin.collections.Iterator<kotlin.String> [val]
|
|
||||||
CALL 'public abstract fun iterator (): kotlin.collections.Iterator<kotlin.String> [operator] declared in kotlin.collections.List' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
CALL 'public abstract fun iterator (): kotlin.collections.Iterator<kotlin.String> [operator] declared in kotlin.collections.List' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
$this: GET_VAR 'val tmp_0: kotlin.collections.List<kotlin.String> [val] declared in <root>.testEmpty' type=kotlin.collections.List<kotlin.String> origin=null
|
$this: GET_VAR 'ss: kotlin.collections.List<kotlin.String> declared in <root>.testEmpty' type=kotlin.collections.List<kotlin.String> origin=null
|
||||||
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
||||||
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
||||||
$this: GET_VAR 'val tmp_1: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testEmpty' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
$this: GET_VAR 'val tmp_0: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testEmpty' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
body: BLOCK type=kotlin.Unit origin=null
|
body: BLOCK type=kotlin.Unit origin=null
|
||||||
VAR name:s type:kotlin.String [val]
|
VAR name:s type:kotlin.String [val]
|
||||||
CALL 'public abstract fun next (): T of kotlin.collections.Iterator [operator] declared in kotlin.collections.Iterator' type=kotlin.String origin=null
|
CALL 'public abstract fun next (): T of kotlin.collections.Iterator [operator] declared in kotlin.collections.Iterator' type=kotlin.String origin=null
|
||||||
$this: GET_VAR 'val tmp_1: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testEmpty' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
$this: GET_VAR 'val tmp_0: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testEmpty' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
FUN name:testIterable visibility:public modality:FINAL <> (ss:kotlin.collections.List<kotlin.String>) returnType:kotlin.Unit
|
FUN name:testIterable visibility:public modality:FINAL <> (ss:kotlin.collections.List<kotlin.String>) returnType:kotlin.Unit
|
||||||
VALUE_PARAMETER name:ss index:0 type:kotlin.collections.List<kotlin.String>
|
VALUE_PARAMETER name:ss index:0 type:kotlin.collections.List<kotlin.String>
|
||||||
BLOCK_BODY
|
BLOCK_BODY
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_2 type:kotlin.collections.List<kotlin.String> [val]
|
VAR IR_TEMPORARY_VARIABLE name:tmp_1 type:kotlin.collections.Iterator<kotlin.String> [val]
|
||||||
GET_VAR 'ss: kotlin.collections.List<kotlin.String> declared in <root>.testIterable' type=kotlin.collections.List<kotlin.String> origin=null
|
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_3 type:kotlin.collections.Iterator<kotlin.String> [val]
|
|
||||||
CALL 'public abstract fun iterator (): kotlin.collections.Iterator<kotlin.String> [operator] declared in kotlin.collections.List' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
CALL 'public abstract fun iterator (): kotlin.collections.Iterator<kotlin.String> [operator] declared in kotlin.collections.List' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
$this: GET_VAR 'val tmp_2: kotlin.collections.List<kotlin.String> [val] declared in <root>.testIterable' type=kotlin.collections.List<kotlin.String> origin=null
|
$this: GET_VAR 'ss: kotlin.collections.List<kotlin.String> declared in <root>.testIterable' type=kotlin.collections.List<kotlin.String> origin=null
|
||||||
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
||||||
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
||||||
$this: GET_VAR 'val tmp_3: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testIterable' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
$this: GET_VAR 'val tmp_1: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testIterable' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
body: BLOCK type=kotlin.Unit origin=null
|
body: BLOCK type=kotlin.Unit origin=null
|
||||||
VAR name:s type:kotlin.String [val]
|
VAR name:s type:kotlin.String [val]
|
||||||
CALL 'public abstract fun next (): T of kotlin.collections.Iterator [operator] declared in kotlin.collections.Iterator' type=kotlin.String origin=null
|
CALL 'public abstract fun next (): T of kotlin.collections.Iterator [operator] declared in kotlin.collections.Iterator' type=kotlin.String origin=null
|
||||||
$this: GET_VAR 'val tmp_3: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testIterable' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
$this: GET_VAR 'val tmp_1: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testIterable' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
CALL 'public final fun println (message: kotlin.Any?): kotlin.Unit [inline] declared in kotlin.io' type=kotlin.Unit origin=null
|
CALL 'public final fun println (message: kotlin.Any?): kotlin.Unit [inline] declared in kotlin.io' type=kotlin.Unit origin=null
|
||||||
message: GET_VAR 'val s: kotlin.String [val] declared in <root>.testIterable' type=kotlin.String origin=null
|
message: GET_VAR 'val s: kotlin.String [val] declared in <root>.testIterable' type=kotlin.String origin=null
|
||||||
FUN name:testDestructuring visibility:public modality:FINAL <> (pp:kotlin.collections.List<kotlin.Pair<kotlin.Int, kotlin.String>>) returnType:kotlin.Unit
|
FUN name:testDestructuring visibility:public modality:FINAL <> (pp:kotlin.collections.List<kotlin.Pair<kotlin.Int, kotlin.String>>) returnType:kotlin.Unit
|
||||||
VALUE_PARAMETER name:pp index:0 type:kotlin.collections.List<kotlin.Pair<kotlin.Int, kotlin.String>>
|
VALUE_PARAMETER name:pp index:0 type:kotlin.collections.List<kotlin.Pair<kotlin.Int, kotlin.String>>
|
||||||
BLOCK_BODY
|
BLOCK_BODY
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_4 type:kotlin.collections.List<kotlin.Pair<kotlin.Int, kotlin.String>> [val]
|
VAR IR_TEMPORARY_VARIABLE name:tmp_2 type:kotlin.collections.Iterator<kotlin.Pair<kotlin.Int, kotlin.String>> [val]
|
||||||
GET_VAR 'pp: kotlin.collections.List<kotlin.Pair<kotlin.Int, kotlin.String>> declared in <root>.testDestructuring' type=kotlin.collections.List<kotlin.Pair<kotlin.Int, kotlin.String>> origin=null
|
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_5 type:kotlin.collections.Iterator<kotlin.Pair<kotlin.Int, kotlin.String>> [val]
|
|
||||||
CALL 'public abstract fun iterator (): kotlin.collections.Iterator<kotlin.Pair<kotlin.Int, kotlin.String>> [operator] declared in kotlin.collections.List' type=kotlin.collections.Iterator<kotlin.Pair<kotlin.Int, kotlin.String>> origin=null
|
CALL 'public abstract fun iterator (): kotlin.collections.Iterator<kotlin.Pair<kotlin.Int, kotlin.String>> [operator] declared in kotlin.collections.List' type=kotlin.collections.Iterator<kotlin.Pair<kotlin.Int, kotlin.String>> origin=null
|
||||||
$this: GET_VAR 'val tmp_4: kotlin.collections.List<kotlin.Pair<kotlin.Int, kotlin.String>> [val] declared in <root>.testDestructuring' type=kotlin.collections.List<kotlin.Pair<kotlin.Int, kotlin.String>> origin=null
|
$this: GET_VAR 'pp: kotlin.collections.List<kotlin.Pair<kotlin.Int, kotlin.String>> declared in <root>.testDestructuring' type=kotlin.collections.List<kotlin.Pair<kotlin.Int, kotlin.String>> origin=null
|
||||||
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
||||||
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
||||||
$this: GET_VAR 'val tmp_5: kotlin.collections.Iterator<kotlin.Pair<kotlin.Int, kotlin.String>> [val] declared in <root>.testDestructuring' type=kotlin.collections.Iterator<kotlin.Pair<kotlin.Int, kotlin.String>> origin=null
|
$this: GET_VAR 'val tmp_2: kotlin.collections.Iterator<kotlin.Pair<kotlin.Int, kotlin.String>> [val] declared in <root>.testDestructuring' type=kotlin.collections.Iterator<kotlin.Pair<kotlin.Int, kotlin.String>> origin=null
|
||||||
body: BLOCK type=kotlin.Unit origin=null
|
body: BLOCK type=kotlin.Unit origin=null
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_6 type:kotlin.Pair<kotlin.Int, kotlin.String> [val]
|
VAR IR_TEMPORARY_VARIABLE name:tmp_3 type:kotlin.Pair<kotlin.Int, kotlin.String> [val]
|
||||||
CALL 'public abstract fun next (): T of kotlin.collections.Iterator [operator] declared in kotlin.collections.Iterator' type=kotlin.Pair<kotlin.Int, kotlin.String> origin=null
|
CALL 'public abstract fun next (): T of kotlin.collections.Iterator [operator] declared in kotlin.collections.Iterator' type=kotlin.Pair<kotlin.Int, kotlin.String> origin=null
|
||||||
$this: GET_VAR 'val tmp_5: kotlin.collections.Iterator<kotlin.Pair<kotlin.Int, kotlin.String>> [val] declared in <root>.testDestructuring' type=kotlin.collections.Iterator<kotlin.Pair<kotlin.Int, kotlin.String>> origin=null
|
$this: GET_VAR 'val tmp_2: kotlin.collections.Iterator<kotlin.Pair<kotlin.Int, kotlin.String>> [val] declared in <root>.testDestructuring' type=kotlin.collections.Iterator<kotlin.Pair<kotlin.Int, kotlin.String>> origin=null
|
||||||
VAR name:i type:kotlin.Int [val]
|
VAR name:i type:kotlin.Int [val]
|
||||||
CALL 'public final fun component1 (): kotlin.Int [operator] declared in kotlin.Pair' type=kotlin.Int origin=null
|
CALL 'public final fun component1 (): kotlin.Int [operator] declared in kotlin.Pair' type=kotlin.Int origin=null
|
||||||
$this: GET_VAR 'val tmp_6: kotlin.Pair<kotlin.Int, kotlin.String> [val] declared in <root>.testDestructuring' type=kotlin.Pair<kotlin.Int, kotlin.String> origin=null
|
$this: GET_VAR 'val tmp_3: kotlin.Pair<kotlin.Int, kotlin.String> [val] declared in <root>.testDestructuring' type=kotlin.Pair<kotlin.Int, kotlin.String> origin=null
|
||||||
VAR name:s type:kotlin.String [val]
|
VAR name:s type:kotlin.String [val]
|
||||||
CALL 'public final fun component2 (): kotlin.String [operator] declared in kotlin.Pair' type=kotlin.String origin=null
|
CALL 'public final fun component2 (): kotlin.String [operator] declared in kotlin.Pair' type=kotlin.String origin=null
|
||||||
$this: GET_VAR 'val tmp_6: kotlin.Pair<kotlin.Int, kotlin.String> [val] declared in <root>.testDestructuring' type=kotlin.Pair<kotlin.Int, kotlin.String> origin=null
|
$this: GET_VAR 'val tmp_3: kotlin.Pair<kotlin.Int, kotlin.String> [val] declared in <root>.testDestructuring' type=kotlin.Pair<kotlin.Int, kotlin.String> origin=null
|
||||||
CALL 'public final fun println (message: kotlin.Int): kotlin.Unit [inline] declared in kotlin.io' type=kotlin.Unit origin=null
|
CALL 'public final fun println (message: kotlin.Int): kotlin.Unit [inline] declared in kotlin.io' type=kotlin.Unit origin=null
|
||||||
message: GET_VAR 'val i: kotlin.Int [val] declared in <root>.testDestructuring' type=kotlin.Int origin=null
|
message: GET_VAR 'val i: kotlin.Int [val] declared in <root>.testDestructuring' type=kotlin.Int origin=null
|
||||||
CALL 'public final fun println (message: kotlin.Any?): kotlin.Unit [inline] declared in kotlin.io' type=kotlin.Unit origin=null
|
CALL 'public final fun println (message: kotlin.Any?): kotlin.Unit [inline] declared in kotlin.io' type=kotlin.Unit origin=null
|
||||||
message: GET_VAR 'val s: kotlin.String [val] declared in <root>.testDestructuring' type=kotlin.String origin=null
|
message: GET_VAR 'val s: kotlin.String [val] declared in <root>.testDestructuring' type=kotlin.String origin=null
|
||||||
FUN name:testRange visibility:public modality:FINAL <> () returnType:kotlin.Unit
|
FUN name:testRange visibility:public modality:FINAL <> () returnType:kotlin.Unit
|
||||||
BLOCK_BODY
|
BLOCK_BODY
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_7 type:kotlin.ranges.IntRange [val]
|
VAR IR_TEMPORARY_VARIABLE name:tmp_4 type:kotlin.collections.IntIterator [val]
|
||||||
CALL 'public final fun rangeTo (other: kotlin.Int): kotlin.ranges.IntRange [operator] declared in kotlin.Int' type=kotlin.ranges.IntRange origin=null
|
|
||||||
$this: CONST Int type=kotlin.Int value=1
|
|
||||||
other: CONST Int type=kotlin.Int value=10
|
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_8 type:kotlin.collections.IntIterator [val]
|
|
||||||
CALL 'public open fun iterator (): kotlin.collections.IntIterator [operator] declared in kotlin.ranges.IntProgression' type=kotlin.collections.IntIterator origin=null
|
CALL 'public open fun iterator (): kotlin.collections.IntIterator [operator] declared in kotlin.ranges.IntProgression' type=kotlin.collections.IntIterator origin=null
|
||||||
$this: GET_VAR 'val tmp_7: kotlin.ranges.IntRange [val] declared in <root>.testRange' type=kotlin.ranges.IntRange origin=null
|
$this: CALL 'public final fun rangeTo (other: kotlin.Int): kotlin.ranges.IntRange [operator] declared in kotlin.Int' type=kotlin.ranges.IntRange origin=null
|
||||||
|
$this: CONST Int type=kotlin.Int value=1
|
||||||
|
other: CONST Int type=kotlin.Int value=10
|
||||||
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
||||||
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
||||||
$this: GET_VAR 'val tmp_8: kotlin.collections.IntIterator [val] declared in <root>.testRange' type=kotlin.collections.IntIterator origin=null
|
$this: GET_VAR 'val tmp_4: kotlin.collections.IntIterator [val] declared in <root>.testRange' type=kotlin.collections.IntIterator origin=null
|
||||||
body: BLOCK type=kotlin.Unit origin=null
|
body: BLOCK type=kotlin.Unit origin=null
|
||||||
VAR name:i type:kotlin.Int [val]
|
VAR name:i type:kotlin.Int [val]
|
||||||
CALL 'public final fun next (): kotlin.Int [operator] declared in kotlin.collections.IntIterator' type=kotlin.Int origin=null
|
CALL 'public final fun next (): kotlin.Int [operator] declared in kotlin.collections.IntIterator' type=kotlin.Int origin=null
|
||||||
$this: GET_VAR 'val tmp_8: kotlin.collections.IntIterator [val] declared in <root>.testRange' type=kotlin.collections.IntIterator origin=null
|
$this: GET_VAR 'val tmp_4: kotlin.collections.IntIterator [val] declared in <root>.testRange' type=kotlin.collections.IntIterator origin=null
|
||||||
|
|||||||
@@ -2,46 +2,40 @@ FILE fqName:<root> fileName:/forWithBreakContinue.kt
|
|||||||
FUN name:testForBreak1 visibility:public modality:FINAL <> (ss:kotlin.collections.List<kotlin.String>) returnType:kotlin.Unit
|
FUN name:testForBreak1 visibility:public modality:FINAL <> (ss:kotlin.collections.List<kotlin.String>) returnType:kotlin.Unit
|
||||||
VALUE_PARAMETER name:ss index:0 type:kotlin.collections.List<kotlin.String>
|
VALUE_PARAMETER name:ss index:0 type:kotlin.collections.List<kotlin.String>
|
||||||
BLOCK_BODY
|
BLOCK_BODY
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_0 type:kotlin.collections.List<kotlin.String> [val]
|
VAR IR_TEMPORARY_VARIABLE name:tmp_0 type:kotlin.collections.Iterator<kotlin.String> [val]
|
||||||
GET_VAR 'ss: kotlin.collections.List<kotlin.String> declared in <root>.testForBreak1' type=kotlin.collections.List<kotlin.String> origin=null
|
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_1 type:kotlin.collections.Iterator<kotlin.String> [val]
|
|
||||||
CALL 'public abstract fun iterator (): kotlin.collections.Iterator<kotlin.String> [operator] declared in kotlin.collections.List' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
CALL 'public abstract fun iterator (): kotlin.collections.Iterator<kotlin.String> [operator] declared in kotlin.collections.List' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
$this: GET_VAR 'val tmp_0: kotlin.collections.List<kotlin.String> [val] declared in <root>.testForBreak1' type=kotlin.collections.List<kotlin.String> origin=null
|
$this: GET_VAR 'ss: kotlin.collections.List<kotlin.String> declared in <root>.testForBreak1' type=kotlin.collections.List<kotlin.String> origin=null
|
||||||
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
||||||
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
||||||
$this: GET_VAR 'val tmp_1: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testForBreak1' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
$this: GET_VAR 'val tmp_0: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testForBreak1' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
body: BLOCK type=kotlin.Nothing origin=null
|
body: BLOCK type=kotlin.Nothing origin=null
|
||||||
VAR name:s type:kotlin.String [val]
|
VAR name:s type:kotlin.String [val]
|
||||||
CALL 'public abstract fun next (): T of kotlin.collections.Iterator [operator] declared in kotlin.collections.Iterator' type=kotlin.String origin=null
|
CALL 'public abstract fun next (): T of kotlin.collections.Iterator [operator] declared in kotlin.collections.Iterator' type=kotlin.String origin=null
|
||||||
$this: GET_VAR 'val tmp_1: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testForBreak1' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
$this: GET_VAR 'val tmp_0: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testForBreak1' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
BREAK label=null loop.label=null
|
BREAK label=null loop.label=null
|
||||||
FUN name:testForBreak2 visibility:public modality:FINAL <> (ss:kotlin.collections.List<kotlin.String>) returnType:kotlin.Unit
|
FUN name:testForBreak2 visibility:public modality:FINAL <> (ss:kotlin.collections.List<kotlin.String>) returnType:kotlin.Unit
|
||||||
VALUE_PARAMETER name:ss index:0 type:kotlin.collections.List<kotlin.String>
|
VALUE_PARAMETER name:ss index:0 type:kotlin.collections.List<kotlin.String>
|
||||||
BLOCK_BODY
|
BLOCK_BODY
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_2 type:kotlin.collections.List<kotlin.String> [val]
|
VAR IR_TEMPORARY_VARIABLE name:tmp_1 type:kotlin.collections.Iterator<kotlin.String> [val]
|
||||||
GET_VAR 'ss: kotlin.collections.List<kotlin.String> declared in <root>.testForBreak2' type=kotlin.collections.List<kotlin.String> origin=null
|
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_3 type:kotlin.collections.Iterator<kotlin.String> [val]
|
|
||||||
CALL 'public abstract fun iterator (): kotlin.collections.Iterator<kotlin.String> [operator] declared in kotlin.collections.List' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
CALL 'public abstract fun iterator (): kotlin.collections.Iterator<kotlin.String> [operator] declared in kotlin.collections.List' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
$this: GET_VAR 'val tmp_2: kotlin.collections.List<kotlin.String> [val] declared in <root>.testForBreak2' type=kotlin.collections.List<kotlin.String> origin=null
|
$this: GET_VAR 'ss: kotlin.collections.List<kotlin.String> declared in <root>.testForBreak2' type=kotlin.collections.List<kotlin.String> origin=null
|
||||||
WHILE label=OUTER origin=FOR_LOOP_INNER_WHILE
|
WHILE label=OUTER origin=FOR_LOOP_INNER_WHILE
|
||||||
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
||||||
$this: GET_VAR 'val tmp_3: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testForBreak2' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
$this: GET_VAR 'val tmp_1: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testForBreak2' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
body: BLOCK type=kotlin.Nothing origin=null
|
body: BLOCK type=kotlin.Nothing origin=null
|
||||||
VAR name:s1 type:kotlin.String [val]
|
VAR name:s1 type:kotlin.String [val]
|
||||||
CALL 'public abstract fun next (): T of kotlin.collections.Iterator [operator] declared in kotlin.collections.Iterator' type=kotlin.String origin=null
|
CALL 'public abstract fun next (): T of kotlin.collections.Iterator [operator] declared in kotlin.collections.Iterator' type=kotlin.String origin=null
|
||||||
$this: GET_VAR 'val tmp_3: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testForBreak2' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
$this: GET_VAR 'val tmp_1: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testForBreak2' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_4 type:kotlin.collections.List<kotlin.String> [val]
|
VAR IR_TEMPORARY_VARIABLE name:tmp_2 type:kotlin.collections.Iterator<kotlin.String> [val]
|
||||||
GET_VAR 'ss: kotlin.collections.List<kotlin.String> declared in <root>.testForBreak2' type=kotlin.collections.List<kotlin.String> origin=null
|
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_5 type:kotlin.collections.Iterator<kotlin.String> [val]
|
|
||||||
CALL 'public abstract fun iterator (): kotlin.collections.Iterator<kotlin.String> [operator] declared in kotlin.collections.List' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
CALL 'public abstract fun iterator (): kotlin.collections.Iterator<kotlin.String> [operator] declared in kotlin.collections.List' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
$this: GET_VAR 'val tmp_4: kotlin.collections.List<kotlin.String> [val] declared in <root>.testForBreak2' type=kotlin.collections.List<kotlin.String> origin=null
|
$this: GET_VAR 'ss: kotlin.collections.List<kotlin.String> declared in <root>.testForBreak2' type=kotlin.collections.List<kotlin.String> origin=null
|
||||||
WHILE label=INNER origin=FOR_LOOP_INNER_WHILE
|
WHILE label=INNER origin=FOR_LOOP_INNER_WHILE
|
||||||
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
||||||
$this: GET_VAR 'val tmp_5: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testForBreak2' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
$this: GET_VAR 'val tmp_2: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testForBreak2' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
body: BLOCK type=kotlin.Nothing origin=null
|
body: BLOCK type=kotlin.Nothing origin=null
|
||||||
VAR name:s2 type:kotlin.String [val]
|
VAR name:s2 type:kotlin.String [val]
|
||||||
CALL 'public abstract fun next (): T of kotlin.collections.Iterator [operator] declared in kotlin.collections.Iterator' type=kotlin.String origin=null
|
CALL 'public abstract fun next (): T of kotlin.collections.Iterator [operator] declared in kotlin.collections.Iterator' type=kotlin.String origin=null
|
||||||
$this: GET_VAR 'val tmp_5: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testForBreak2' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
$this: GET_VAR 'val tmp_2: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testForBreak2' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
BREAK label=OUTER loop.label=OUTER
|
BREAK label=OUTER loop.label=OUTER
|
||||||
BREAK label=INNER loop.label=INNER
|
BREAK label=INNER loop.label=INNER
|
||||||
BREAK label=INNER loop.label=INNER
|
BREAK label=INNER loop.label=INNER
|
||||||
@@ -49,46 +43,40 @@ FILE fqName:<root> fileName:/forWithBreakContinue.kt
|
|||||||
FUN name:testForContinue1 visibility:public modality:FINAL <> (ss:kotlin.collections.List<kotlin.String>) returnType:kotlin.Unit
|
FUN name:testForContinue1 visibility:public modality:FINAL <> (ss:kotlin.collections.List<kotlin.String>) returnType:kotlin.Unit
|
||||||
VALUE_PARAMETER name:ss index:0 type:kotlin.collections.List<kotlin.String>
|
VALUE_PARAMETER name:ss index:0 type:kotlin.collections.List<kotlin.String>
|
||||||
BLOCK_BODY
|
BLOCK_BODY
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_6 type:kotlin.collections.List<kotlin.String> [val]
|
VAR IR_TEMPORARY_VARIABLE name:tmp_3 type:kotlin.collections.Iterator<kotlin.String> [val]
|
||||||
GET_VAR 'ss: kotlin.collections.List<kotlin.String> declared in <root>.testForContinue1' type=kotlin.collections.List<kotlin.String> origin=null
|
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_7 type:kotlin.collections.Iterator<kotlin.String> [val]
|
|
||||||
CALL 'public abstract fun iterator (): kotlin.collections.Iterator<kotlin.String> [operator] declared in kotlin.collections.List' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
CALL 'public abstract fun iterator (): kotlin.collections.Iterator<kotlin.String> [operator] declared in kotlin.collections.List' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
$this: GET_VAR 'val tmp_6: kotlin.collections.List<kotlin.String> [val] declared in <root>.testForContinue1' type=kotlin.collections.List<kotlin.String> origin=null
|
$this: GET_VAR 'ss: kotlin.collections.List<kotlin.String> declared in <root>.testForContinue1' type=kotlin.collections.List<kotlin.String> origin=null
|
||||||
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
||||||
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
||||||
$this: GET_VAR 'val tmp_7: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testForContinue1' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
$this: GET_VAR 'val tmp_3: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testForContinue1' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
body: BLOCK type=kotlin.Nothing origin=null
|
body: BLOCK type=kotlin.Nothing origin=null
|
||||||
VAR name:s type:kotlin.String [val]
|
VAR name:s type:kotlin.String [val]
|
||||||
CALL 'public abstract fun next (): T of kotlin.collections.Iterator [operator] declared in kotlin.collections.Iterator' type=kotlin.String origin=null
|
CALL 'public abstract fun next (): T of kotlin.collections.Iterator [operator] declared in kotlin.collections.Iterator' type=kotlin.String origin=null
|
||||||
$this: GET_VAR 'val tmp_7: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testForContinue1' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
$this: GET_VAR 'val tmp_3: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testForContinue1' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
CONTINUE label=null loop.label=null
|
CONTINUE label=null loop.label=null
|
||||||
FUN name:testForContinue2 visibility:public modality:FINAL <> (ss:kotlin.collections.List<kotlin.String>) returnType:kotlin.Unit
|
FUN name:testForContinue2 visibility:public modality:FINAL <> (ss:kotlin.collections.List<kotlin.String>) returnType:kotlin.Unit
|
||||||
VALUE_PARAMETER name:ss index:0 type:kotlin.collections.List<kotlin.String>
|
VALUE_PARAMETER name:ss index:0 type:kotlin.collections.List<kotlin.String>
|
||||||
BLOCK_BODY
|
BLOCK_BODY
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_8 type:kotlin.collections.List<kotlin.String> [val]
|
VAR IR_TEMPORARY_VARIABLE name:tmp_4 type:kotlin.collections.Iterator<kotlin.String> [val]
|
||||||
GET_VAR 'ss: kotlin.collections.List<kotlin.String> declared in <root>.testForContinue2' type=kotlin.collections.List<kotlin.String> origin=null
|
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_9 type:kotlin.collections.Iterator<kotlin.String> [val]
|
|
||||||
CALL 'public abstract fun iterator (): kotlin.collections.Iterator<kotlin.String> [operator] declared in kotlin.collections.List' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
CALL 'public abstract fun iterator (): kotlin.collections.Iterator<kotlin.String> [operator] declared in kotlin.collections.List' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
$this: GET_VAR 'val tmp_8: kotlin.collections.List<kotlin.String> [val] declared in <root>.testForContinue2' type=kotlin.collections.List<kotlin.String> origin=null
|
$this: GET_VAR 'ss: kotlin.collections.List<kotlin.String> declared in <root>.testForContinue2' type=kotlin.collections.List<kotlin.String> origin=null
|
||||||
WHILE label=OUTER origin=FOR_LOOP_INNER_WHILE
|
WHILE label=OUTER origin=FOR_LOOP_INNER_WHILE
|
||||||
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
||||||
$this: GET_VAR 'val tmp_9: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testForContinue2' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
$this: GET_VAR 'val tmp_4: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testForContinue2' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
body: BLOCK type=kotlin.Nothing origin=null
|
body: BLOCK type=kotlin.Nothing origin=null
|
||||||
VAR name:s1 type:kotlin.String [val]
|
VAR name:s1 type:kotlin.String [val]
|
||||||
CALL 'public abstract fun next (): T of kotlin.collections.Iterator [operator] declared in kotlin.collections.Iterator' type=kotlin.String origin=null
|
CALL 'public abstract fun next (): T of kotlin.collections.Iterator [operator] declared in kotlin.collections.Iterator' type=kotlin.String origin=null
|
||||||
$this: GET_VAR 'val tmp_9: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testForContinue2' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
$this: GET_VAR 'val tmp_4: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testForContinue2' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_10 type:kotlin.collections.List<kotlin.String> [val]
|
VAR IR_TEMPORARY_VARIABLE name:tmp_5 type:kotlin.collections.Iterator<kotlin.String> [val]
|
||||||
GET_VAR 'ss: kotlin.collections.List<kotlin.String> declared in <root>.testForContinue2' type=kotlin.collections.List<kotlin.String> origin=null
|
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_11 type:kotlin.collections.Iterator<kotlin.String> [val]
|
|
||||||
CALL 'public abstract fun iterator (): kotlin.collections.Iterator<kotlin.String> [operator] declared in kotlin.collections.List' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
CALL 'public abstract fun iterator (): kotlin.collections.Iterator<kotlin.String> [operator] declared in kotlin.collections.List' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
$this: GET_VAR 'val tmp_10: kotlin.collections.List<kotlin.String> [val] declared in <root>.testForContinue2' type=kotlin.collections.List<kotlin.String> origin=null
|
$this: GET_VAR 'ss: kotlin.collections.List<kotlin.String> declared in <root>.testForContinue2' type=kotlin.collections.List<kotlin.String> origin=null
|
||||||
WHILE label=INNER origin=FOR_LOOP_INNER_WHILE
|
WHILE label=INNER origin=FOR_LOOP_INNER_WHILE
|
||||||
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
||||||
$this: GET_VAR 'val tmp_11: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testForContinue2' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
$this: GET_VAR 'val tmp_5: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testForContinue2' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
body: BLOCK type=kotlin.Nothing origin=null
|
body: BLOCK type=kotlin.Nothing origin=null
|
||||||
VAR name:s2 type:kotlin.String [val]
|
VAR name:s2 type:kotlin.String [val]
|
||||||
CALL 'public abstract fun next (): T of kotlin.collections.Iterator [operator] declared in kotlin.collections.Iterator' type=kotlin.String origin=null
|
CALL 'public abstract fun next (): T of kotlin.collections.Iterator [operator] declared in kotlin.collections.Iterator' type=kotlin.String origin=null
|
||||||
$this: GET_VAR 'val tmp_11: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testForContinue2' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
$this: GET_VAR 'val tmp_5: kotlin.collections.Iterator<kotlin.String> [val] declared in <root>.testForContinue2' type=kotlin.collections.Iterator<kotlin.String> origin=null
|
||||||
CONTINUE label=OUTER loop.label=OUTER
|
CONTINUE label=OUTER loop.label=OUTER
|
||||||
CONTINUE label=INNER loop.label=INNER
|
CONTINUE label=INNER loop.label=INNER
|
||||||
CONTINUE label=INNER loop.label=INNER
|
CONTINUE label=INNER loop.label=INNER
|
||||||
|
|||||||
@@ -105,9 +105,7 @@ FILE fqName:<root> fileName:/forWithImplicitReceivers.kt
|
|||||||
FUN name:test visibility:public modality:FINAL <> ($receiver:<root>.IReceiver) returnType:kotlin.Unit
|
FUN name:test visibility:public modality:FINAL <> ($receiver:<root>.IReceiver) returnType:kotlin.Unit
|
||||||
$receiver: VALUE_PARAMETER name:<this> type:<root>.IReceiver
|
$receiver: VALUE_PARAMETER name:<this> type:<root>.IReceiver
|
||||||
BLOCK_BODY
|
BLOCK_BODY
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_1 type:<root>.FiveTimes [val]
|
VAR IR_TEMPORARY_VARIABLE name:tmp_1 type:<root>.IntCell [val]
|
||||||
GET_OBJECT 'CLASS OBJECT name:FiveTimes modality:FINAL visibility:public superTypes:[kotlin.Any]' type=<root>.FiveTimes
|
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_2 type:<root>.IntCell [val]
|
|
||||||
CALL 'public open fun iterator (): <root>.IntCell [operator] declared in <root>.IReceiver' type=<root>.IntCell origin=null
|
CALL 'public open fun iterator (): <root>.IntCell [operator] declared in <root>.IReceiver' type=<root>.IntCell origin=null
|
||||||
$this: GET_VAR '<this>: <root>.IReceiver declared in <root>.test' type=<root>.IReceiver origin=null
|
$this: GET_VAR '<this>: <root>.IReceiver declared in <root>.test' type=<root>.IReceiver origin=null
|
||||||
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
||||||
|
|||||||
+25
-35
@@ -4,38 +4,34 @@ FILE fqName:<root> fileName:/enhancedNullabilityInForLoop.kt
|
|||||||
BLOCK_BODY
|
BLOCK_BODY
|
||||||
FUN name:testForInListUnused visibility:public modality:FINAL <> () returnType:kotlin.Unit
|
FUN name:testForInListUnused visibility:public modality:FINAL <> () returnType:kotlin.Unit
|
||||||
BLOCK_BODY
|
BLOCK_BODY
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_0 type:kotlin.collections.List<<root>.P>? [val]
|
VAR IR_TEMPORARY_VARIABLE name:tmp_0 type:kotlin.collections.MutableIterator<<root>.P> [val]
|
||||||
CALL 'public open fun listOfNotNull (): kotlin.collections.List<<root>.P>? [operator] declared in <root>.J' type=kotlin.collections.List<<root>.P>? origin=null
|
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_1 type:kotlin.collections.MutableIterator<<root>.P> [val]
|
|
||||||
CALL 'public abstract fun iterator (): kotlin.collections.MutableIterator<<root>.P> [operator] declared in kotlin.collections.MutableCollection' type=kotlin.collections.MutableIterator<<root>.P> origin=null
|
CALL 'public abstract fun iterator (): kotlin.collections.MutableIterator<<root>.P> [operator] declared in kotlin.collections.MutableCollection' type=kotlin.collections.MutableIterator<<root>.P> origin=null
|
||||||
$this: GET_VAR 'val tmp_0: kotlin.collections.List<<root>.P>? [val] declared in <root>.testForInListUnused' type=kotlin.collections.List<<root>.P>? origin=null
|
$this: CALL 'public open fun listOfNotNull (): kotlin.collections.List<<root>.P>? [operator] declared in <root>.J' type=kotlin.collections.List<<root>.P>? origin=null
|
||||||
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
||||||
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
||||||
$this: GET_VAR 'val tmp_1: kotlin.collections.MutableIterator<<root>.P> [val] declared in <root>.testForInListUnused' type=kotlin.collections.MutableIterator<<root>.P> origin=null
|
$this: GET_VAR 'val tmp_0: kotlin.collections.MutableIterator<<root>.P> [val] declared in <root>.testForInListUnused' type=kotlin.collections.MutableIterator<<root>.P> origin=null
|
||||||
body: BLOCK type=kotlin.Unit origin=null
|
body: BLOCK type=kotlin.Unit origin=null
|
||||||
VAR name:x type:<root>.P [val]
|
VAR name:x type:<root>.P [val]
|
||||||
CALL 'public abstract fun next (): T of kotlin.collections.MutableIterator [operator] declared in kotlin.collections.Iterator' type=<root>.P origin=null
|
CALL 'public abstract fun next (): T of kotlin.collections.MutableIterator [operator] declared in kotlin.collections.Iterator' type=<root>.P origin=null
|
||||||
$this: GET_VAR 'val tmp_1: kotlin.collections.MutableIterator<<root>.P> [val] declared in <root>.testForInListUnused' type=kotlin.collections.MutableIterator<<root>.P> origin=null
|
$this: GET_VAR 'val tmp_0: kotlin.collections.MutableIterator<<root>.P> [val] declared in <root>.testForInListUnused' type=kotlin.collections.MutableIterator<<root>.P> origin=null
|
||||||
FUN name:testForInListDestructured visibility:public modality:FINAL <> () returnType:kotlin.Unit
|
FUN name:testForInListDestructured visibility:public modality:FINAL <> () returnType:kotlin.Unit
|
||||||
BLOCK_BODY
|
BLOCK_BODY
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_2 type:kotlin.collections.List<<root>.P>? [val]
|
VAR IR_TEMPORARY_VARIABLE name:tmp_1 type:kotlin.collections.MutableIterator<<root>.P> [val]
|
||||||
CALL 'public open fun listOfNotNull (): kotlin.collections.List<<root>.P>? [operator] declared in <root>.J' type=kotlin.collections.List<<root>.P>? origin=null
|
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_3 type:kotlin.collections.MutableIterator<<root>.P> [val]
|
|
||||||
CALL 'public abstract fun iterator (): kotlin.collections.MutableIterator<<root>.P> [operator] declared in kotlin.collections.MutableCollection' type=kotlin.collections.MutableIterator<<root>.P> origin=null
|
CALL 'public abstract fun iterator (): kotlin.collections.MutableIterator<<root>.P> [operator] declared in kotlin.collections.MutableCollection' type=kotlin.collections.MutableIterator<<root>.P> origin=null
|
||||||
$this: GET_VAR 'val tmp_2: kotlin.collections.List<<root>.P>? [val] declared in <root>.testForInListDestructured' type=kotlin.collections.List<<root>.P>? origin=null
|
$this: CALL 'public open fun listOfNotNull (): kotlin.collections.List<<root>.P>? [operator] declared in <root>.J' type=kotlin.collections.List<<root>.P>? origin=null
|
||||||
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
||||||
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
||||||
$this: GET_VAR 'val tmp_3: kotlin.collections.MutableIterator<<root>.P> [val] declared in <root>.testForInListDestructured' type=kotlin.collections.MutableIterator<<root>.P> origin=null
|
$this: GET_VAR 'val tmp_1: kotlin.collections.MutableIterator<<root>.P> [val] declared in <root>.testForInListDestructured' type=kotlin.collections.MutableIterator<<root>.P> origin=null
|
||||||
body: BLOCK type=kotlin.Unit origin=null
|
body: BLOCK type=kotlin.Unit origin=null
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_4 type:<root>.P [val]
|
VAR IR_TEMPORARY_VARIABLE name:tmp_2 type:<root>.P [val]
|
||||||
CALL 'public abstract fun next (): T of kotlin.collections.MutableIterator [operator] declared in kotlin.collections.Iterator' type=<root>.P origin=null
|
CALL 'public abstract fun next (): T of kotlin.collections.MutableIterator [operator] declared in kotlin.collections.Iterator' type=<root>.P origin=null
|
||||||
$this: GET_VAR 'val tmp_3: kotlin.collections.MutableIterator<<root>.P> [val] declared in <root>.testForInListDestructured' type=kotlin.collections.MutableIterator<<root>.P> origin=null
|
$this: GET_VAR 'val tmp_1: kotlin.collections.MutableIterator<<root>.P> [val] declared in <root>.testForInListDestructured' type=kotlin.collections.MutableIterator<<root>.P> origin=null
|
||||||
VAR name:x type:kotlin.Int [val]
|
VAR name:x type:kotlin.Int [val]
|
||||||
CALL 'public final fun component1 (): kotlin.Int declared in <root>.P' type=kotlin.Int origin=null
|
CALL 'public final fun component1 (): kotlin.Int declared in <root>.P' type=kotlin.Int origin=null
|
||||||
$this: GET_VAR 'val tmp_4: <root>.P [val] declared in <root>.testForInListDestructured' type=<root>.P origin=null
|
$this: GET_VAR 'val tmp_2: <root>.P [val] declared in <root>.testForInListDestructured' type=<root>.P origin=null
|
||||||
VAR name:y type:kotlin.Int [val]
|
VAR name:y type:kotlin.Int [val]
|
||||||
CALL 'public final fun component2 (): kotlin.Int declared in <root>.P' type=kotlin.Int origin=null
|
CALL 'public final fun component2 (): kotlin.Int declared in <root>.P' type=kotlin.Int origin=null
|
||||||
$this: GET_VAR 'val tmp_4: <root>.P [val] declared in <root>.testForInListDestructured' type=<root>.P origin=null
|
$this: GET_VAR 'val tmp_2: <root>.P [val] declared in <root>.testForInListDestructured' type=<root>.P origin=null
|
||||||
FUN name:testDesugaredForInList visibility:public modality:FINAL <> () returnType:kotlin.Unit
|
FUN name:testDesugaredForInList visibility:public modality:FINAL <> () returnType:kotlin.Unit
|
||||||
BLOCK_BODY
|
BLOCK_BODY
|
||||||
VAR name:iterator type:kotlin.collections.MutableIterator<<root>.P> [val]
|
VAR name:iterator type:kotlin.collections.MutableIterator<<root>.P> [val]
|
||||||
@@ -51,33 +47,29 @@ FILE fqName:<root> fileName:/enhancedNullabilityInForLoop.kt
|
|||||||
FUN name:testForInArrayUnused visibility:public modality:FINAL <> (j:<root>.J) returnType:kotlin.Unit
|
FUN name:testForInArrayUnused visibility:public modality:FINAL <> (j:<root>.J) returnType:kotlin.Unit
|
||||||
VALUE_PARAMETER name:j index:0 type:<root>.J
|
VALUE_PARAMETER name:j index:0 type:<root>.J
|
||||||
BLOCK_BODY
|
BLOCK_BODY
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_5 type:kotlin.Array<out <root>.P?>? [val]
|
VAR IR_TEMPORARY_VARIABLE name:tmp_3 type:kotlin.collections.Iterator<<root>.P?> [val]
|
||||||
CALL 'public open fun arrayOfNotNull (): kotlin.Array<out <root>.P?>? [operator] declared in <root>.J' type=kotlin.Array<out <root>.P?>? origin=null
|
|
||||||
$this: GET_VAR 'j: <root>.J declared in <root>.testForInArrayUnused' type=<root>.J origin=null
|
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_6 type:kotlin.collections.Iterator<<root>.P?> [val]
|
|
||||||
CALL 'public final fun iterator (): kotlin.collections.Iterator<<root>.P?> [operator] declared in kotlin.Array' type=kotlin.collections.Iterator<<root>.P?> origin=null
|
CALL 'public final fun iterator (): kotlin.collections.Iterator<<root>.P?> [operator] declared in kotlin.Array' type=kotlin.collections.Iterator<<root>.P?> origin=null
|
||||||
$this: GET_VAR 'val tmp_5: kotlin.Array<out <root>.P?>? [val] declared in <root>.testForInArrayUnused' type=kotlin.Array<out <root>.P?>? origin=null
|
$this: CALL 'public open fun arrayOfNotNull (): kotlin.Array<out <root>.P?>? [operator] declared in <root>.J' type=kotlin.Array<out <root>.P?>? origin=null
|
||||||
|
$this: GET_VAR 'j: <root>.J declared in <root>.testForInArrayUnused' type=<root>.J origin=null
|
||||||
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
||||||
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
||||||
$this: GET_VAR 'val tmp_6: kotlin.collections.Iterator<<root>.P?> [val] declared in <root>.testForInArrayUnused' type=kotlin.collections.Iterator<<root>.P?> origin=null
|
$this: GET_VAR 'val tmp_3: kotlin.collections.Iterator<<root>.P?> [val] declared in <root>.testForInArrayUnused' type=kotlin.collections.Iterator<<root>.P?> origin=null
|
||||||
body: BLOCK type=kotlin.Unit origin=null
|
body: BLOCK type=kotlin.Unit origin=null
|
||||||
VAR name:x type:<root>.P? [val]
|
VAR name:x type:<root>.P? [val]
|
||||||
CALL 'public abstract fun next (): T of kotlin.collections.Iterator [operator] declared in kotlin.collections.Iterator' type=<root>.P? origin=null
|
CALL 'public abstract fun next (): T of kotlin.collections.Iterator [operator] declared in kotlin.collections.Iterator' type=<root>.P? origin=null
|
||||||
$this: GET_VAR 'val tmp_6: kotlin.collections.Iterator<<root>.P?> [val] declared in <root>.testForInArrayUnused' type=kotlin.collections.Iterator<<root>.P?> origin=null
|
$this: GET_VAR 'val tmp_3: kotlin.collections.Iterator<<root>.P?> [val] declared in <root>.testForInArrayUnused' type=kotlin.collections.Iterator<<root>.P?> origin=null
|
||||||
FUN name:testForInListUse visibility:public modality:FINAL <> () returnType:kotlin.Unit
|
FUN name:testForInListUse visibility:public modality:FINAL <> () returnType:kotlin.Unit
|
||||||
BLOCK_BODY
|
BLOCK_BODY
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_7 type:kotlin.collections.List<<root>.P>? [val]
|
VAR IR_TEMPORARY_VARIABLE name:tmp_4 type:kotlin.collections.MutableIterator<<root>.P> [val]
|
||||||
CALL 'public open fun listOfNotNull (): kotlin.collections.List<<root>.P>? [operator] declared in <root>.J' type=kotlin.collections.List<<root>.P>? origin=null
|
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_8 type:kotlin.collections.MutableIterator<<root>.P> [val]
|
|
||||||
CALL 'public abstract fun iterator (): kotlin.collections.MutableIterator<<root>.P> [operator] declared in kotlin.collections.MutableCollection' type=kotlin.collections.MutableIterator<<root>.P> origin=null
|
CALL 'public abstract fun iterator (): kotlin.collections.MutableIterator<<root>.P> [operator] declared in kotlin.collections.MutableCollection' type=kotlin.collections.MutableIterator<<root>.P> origin=null
|
||||||
$this: GET_VAR 'val tmp_7: kotlin.collections.List<<root>.P>? [val] declared in <root>.testForInListUse' type=kotlin.collections.List<<root>.P>? origin=null
|
$this: CALL 'public open fun listOfNotNull (): kotlin.collections.List<<root>.P>? [operator] declared in <root>.J' type=kotlin.collections.List<<root>.P>? origin=null
|
||||||
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
||||||
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
||||||
$this: GET_VAR 'val tmp_8: kotlin.collections.MutableIterator<<root>.P> [val] declared in <root>.testForInListUse' type=kotlin.collections.MutableIterator<<root>.P> origin=null
|
$this: GET_VAR 'val tmp_4: kotlin.collections.MutableIterator<<root>.P> [val] declared in <root>.testForInListUse' type=kotlin.collections.MutableIterator<<root>.P> origin=null
|
||||||
body: BLOCK type=kotlin.Unit origin=null
|
body: BLOCK type=kotlin.Unit origin=null
|
||||||
VAR name:x type:<root>.P [val]
|
VAR name:x type:<root>.P [val]
|
||||||
CALL 'public abstract fun next (): T of kotlin.collections.MutableIterator [operator] declared in kotlin.collections.Iterator' type=<root>.P origin=null
|
CALL 'public abstract fun next (): T of kotlin.collections.MutableIterator [operator] declared in kotlin.collections.Iterator' type=<root>.P origin=null
|
||||||
$this: GET_VAR 'val tmp_8: kotlin.collections.MutableIterator<<root>.P> [val] declared in <root>.testForInListUse' type=kotlin.collections.MutableIterator<<root>.P> origin=null
|
$this: GET_VAR 'val tmp_4: kotlin.collections.MutableIterator<<root>.P> [val] declared in <root>.testForInListUse' type=kotlin.collections.MutableIterator<<root>.P> origin=null
|
||||||
CALL 'public final fun use (s: <root>.P): kotlin.Unit declared in <root>' type=kotlin.Unit origin=null
|
CALL 'public final fun use (s: <root>.P): kotlin.Unit declared in <root>' type=kotlin.Unit origin=null
|
||||||
s: GET_VAR 'val x: <root>.P [val] declared in <root>.testForInListUse' type=<root>.P origin=null
|
s: GET_VAR 'val x: <root>.P [val] declared in <root>.testForInListUse' type=<root>.P origin=null
|
||||||
CALL 'public open fun use (s: <root>.P): kotlin.Unit [operator] declared in <root>.J' type=kotlin.Unit origin=null
|
CALL 'public open fun use (s: <root>.P): kotlin.Unit [operator] declared in <root>.J' type=kotlin.Unit origin=null
|
||||||
@@ -85,19 +77,17 @@ FILE fqName:<root> fileName:/enhancedNullabilityInForLoop.kt
|
|||||||
FUN name:testForInArrayUse visibility:public modality:FINAL <> (j:<root>.J) returnType:kotlin.Unit
|
FUN name:testForInArrayUse visibility:public modality:FINAL <> (j:<root>.J) returnType:kotlin.Unit
|
||||||
VALUE_PARAMETER name:j index:0 type:<root>.J
|
VALUE_PARAMETER name:j index:0 type:<root>.J
|
||||||
BLOCK_BODY
|
BLOCK_BODY
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_9 type:kotlin.Array<out <root>.P?>? [val]
|
VAR IR_TEMPORARY_VARIABLE name:tmp_5 type:kotlin.collections.Iterator<<root>.P?> [val]
|
||||||
CALL 'public open fun arrayOfNotNull (): kotlin.Array<out <root>.P?>? [operator] declared in <root>.J' type=kotlin.Array<out <root>.P?>? origin=null
|
|
||||||
$this: GET_VAR 'j: <root>.J declared in <root>.testForInArrayUse' type=<root>.J origin=null
|
|
||||||
VAR IR_TEMPORARY_VARIABLE name:tmp_10 type:kotlin.collections.Iterator<<root>.P?> [val]
|
|
||||||
CALL 'public final fun iterator (): kotlin.collections.Iterator<<root>.P?> [operator] declared in kotlin.Array' type=kotlin.collections.Iterator<<root>.P?> origin=null
|
CALL 'public final fun iterator (): kotlin.collections.Iterator<<root>.P?> [operator] declared in kotlin.Array' type=kotlin.collections.Iterator<<root>.P?> origin=null
|
||||||
$this: GET_VAR 'val tmp_9: kotlin.Array<out <root>.P?>? [val] declared in <root>.testForInArrayUse' type=kotlin.Array<out <root>.P?>? origin=null
|
$this: CALL 'public open fun arrayOfNotNull (): kotlin.Array<out <root>.P?>? [operator] declared in <root>.J' type=kotlin.Array<out <root>.P?>? origin=null
|
||||||
|
$this: GET_VAR 'j: <root>.J declared in <root>.testForInArrayUse' type=<root>.J origin=null
|
||||||
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
WHILE label=null origin=FOR_LOOP_INNER_WHILE
|
||||||
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
condition: CALL 'public abstract fun hasNext (): kotlin.Boolean [operator] declared in kotlin.collections.Iterator' type=kotlin.Boolean origin=null
|
||||||
$this: GET_VAR 'val tmp_10: kotlin.collections.Iterator<<root>.P?> [val] declared in <root>.testForInArrayUse' type=kotlin.collections.Iterator<<root>.P?> origin=null
|
$this: GET_VAR 'val tmp_5: kotlin.collections.Iterator<<root>.P?> [val] declared in <root>.testForInArrayUse' type=kotlin.collections.Iterator<<root>.P?> origin=null
|
||||||
body: BLOCK type=kotlin.Unit origin=null
|
body: BLOCK type=kotlin.Unit origin=null
|
||||||
VAR name:x type:<root>.P? [val]
|
VAR name:x type:<root>.P? [val]
|
||||||
CALL 'public abstract fun next (): T of kotlin.collections.Iterator [operator] declared in kotlin.collections.Iterator' type=<root>.P? origin=null
|
CALL 'public abstract fun next (): T of kotlin.collections.Iterator [operator] declared in kotlin.collections.Iterator' type=<root>.P? origin=null
|
||||||
$this: GET_VAR 'val tmp_10: kotlin.collections.Iterator<<root>.P?> [val] declared in <root>.testForInArrayUse' type=kotlin.collections.Iterator<<root>.P?> origin=null
|
$this: GET_VAR 'val tmp_5: kotlin.collections.Iterator<<root>.P?> [val] declared in <root>.testForInArrayUse' type=kotlin.collections.Iterator<<root>.P?> origin=null
|
||||||
CALL 'public final fun use (s: <root>.P): kotlin.Unit declared in <root>' type=kotlin.Unit origin=null
|
CALL 'public final fun use (s: <root>.P): kotlin.Unit declared in <root>' type=kotlin.Unit origin=null
|
||||||
s: GET_VAR 'val x: <root>.P? [val] declared in <root>.testForInArrayUse' type=<root>.P? origin=null
|
s: GET_VAR 'val x: <root>.P? [val] declared in <root>.testForInArrayUse' type=<root>.P? origin=null
|
||||||
CALL 'public open fun use (s: <root>.P): kotlin.Unit [operator] declared in <root>.J' type=kotlin.Unit origin=null
|
CALL 'public open fun use (s: <root>.P): kotlin.Unit [operator] declared in <root>.J' type=kotlin.Unit origin=null
|
||||||
|
|||||||
Reference in New Issue
Block a user