[FIR LT] Unmute some stepping and local variable tests
Corresponding tests were fixed together with #KT-56982, #KT-56913, #KT-56926
This commit is contained in:
+26
-28
@@ -1,5 +1,3 @@
|
||||
// IGNORE_BACKEND_K2_LIGHT_TREE: JVM_IR
|
||||
// Reason: KT-56755
|
||||
// FILE: test.kt
|
||||
open class Base(i: Int)
|
||||
|
||||
@@ -17,35 +15,35 @@ fun box() {
|
||||
}
|
||||
|
||||
// EXPECTATIONS JVM JVM_IR
|
||||
// test.kt:15 box:
|
||||
// test.kt:7 <init>: p:int=3:int
|
||||
// test.kt:6 <init>:
|
||||
// test.kt:4 <init>: i:int=1:int
|
||||
// test.kt:6 <init>:
|
||||
// test.kt:8 <init>: p:int=3:int
|
||||
// test.kt:13 box:
|
||||
// test.kt:5 <init>: p:int=3:int
|
||||
// test.kt:4 <init>:
|
||||
// test.kt:2 <init>: i:int=1:int
|
||||
// test.kt:4 <init>:
|
||||
// test.kt:6 <init>: p:int=3:int
|
||||
// EXPECTATIONS JVM_IR
|
||||
// test.kt:9 <init>: p:int=3:int, a:int=2:int
|
||||
// test.kt:7 <init>: p:int=3:int, a:int=2:int
|
||||
// EXPECTATIONS JVM JVM_IR
|
||||
// test.kt:13 box:
|
||||
// test.kt:14 box:
|
||||
// test.kt:9 <init>: p1:int=4:int, p2:int=5:int
|
||||
// test.kt:4 <init>:
|
||||
// test.kt:2 <init>: i:int=1:int
|
||||
// test.kt:4 <init>:
|
||||
// test.kt:9 <init>: p1:int=4:int, p2:int=5:int
|
||||
// test.kt:14 box:
|
||||
// test.kt:15 box:
|
||||
// test.kt:16 box:
|
||||
// test.kt:11 <init>: p1:int=4:int, p2:int=5:int
|
||||
// test.kt:6 <init>:
|
||||
// test.kt:4 <init>: i:int=1:int
|
||||
// test.kt:6 <init>:
|
||||
// test.kt:11 <init>: p1:int=4:int, p2:int=5:int
|
||||
// test.kt:16 box:
|
||||
// test.kt:17 box:
|
||||
|
||||
// EXPECTATIONS JS_IR
|
||||
// test.kt:13 box:
|
||||
// test.kt:5 Derived_init_$Init$: p=3:number
|
||||
// test.kt:4 <init>:
|
||||
// test.kt:2 <init>: i=1:number
|
||||
// test.kt:4 <init>:
|
||||
// test.kt:6 Derived_init_$Init$: p=3:number
|
||||
// test.kt:14 box:
|
||||
// test.kt:9 Derived_init_$Init$: p1=4:number, p2=5:number
|
||||
// test.kt:4 <init>:
|
||||
// test.kt:2 <init>: i=1:number
|
||||
// test.kt:4 <init>:
|
||||
// test.kt:15 box:
|
||||
// test.kt:7 Derived_init_$Init$: p=3:number
|
||||
// test.kt:6 <init>:
|
||||
// test.kt:4 <init>: i=1:number
|
||||
// test.kt:6 <init>:
|
||||
// test.kt:8 Derived_init_$Init$: p=3:number
|
||||
// test.kt:16 box:
|
||||
// test.kt:11 Derived_init_$Init$: p1=4:number, p2=5:number
|
||||
// test.kt:6 <init>:
|
||||
// test.kt:4 <init>: i=1:number
|
||||
// test.kt:6 <init>:
|
||||
// test.kt:17 box:
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
// IGNORE_BACKEND_K2_LIGHT_TREE: JVM_IR
|
||||
// Reason: KT-56755
|
||||
// FILE: test.kt
|
||||
class F(val a: String)
|
||||
|
||||
@@ -8,13 +6,13 @@ fun box() {
|
||||
}
|
||||
|
||||
// EXPECTATIONS JVM JVM_IR
|
||||
// test.kt:7 box:
|
||||
// test.kt:4 <init>: a:java.lang.String="foo":java.lang.String
|
||||
// test.kt:7 box:
|
||||
// test.kt:8 box:
|
||||
// test.kt:5 box:
|
||||
// test.kt:2 <init>: a:java.lang.String="foo":java.lang.String
|
||||
// test.kt:5 box:
|
||||
// test.kt:6 box:
|
||||
|
||||
// EXPECTATIONS JS_IR
|
||||
// test.kt:7 box:
|
||||
// test.kt:4 <init>: a="foo":kotlin.String
|
||||
// test.kt:4 <init>: a="foo":kotlin.String
|
||||
// test.kt:8 box:
|
||||
// test.kt:5 box:
|
||||
// test.kt:2 <init>: a="foo":kotlin.String
|
||||
// test.kt:2 <init>: a="foo":kotlin.String
|
||||
// test.kt:6 box:
|
||||
|
||||
+20
-22
@@ -1,5 +1,3 @@
|
||||
// IGNORE_BACKEND_K2_LIGHT_TREE: JVM_IR
|
||||
// Reason: KT-56755
|
||||
// FILE: test.kt
|
||||
class MyPair(val x: String, val y: String) {
|
||||
operator fun component1(): String {
|
||||
@@ -18,28 +16,28 @@ fun box(): String {
|
||||
}
|
||||
|
||||
// EXPECTATIONS JVM JVM_IR
|
||||
// test.kt:15 box:
|
||||
// test.kt:4 <init>: x:java.lang.String="X":java.lang.String, y:java.lang.String="Y":java.lang.String
|
||||
// test.kt:15 box:
|
||||
// test.kt:16 box: p:MyPair=MyPair
|
||||
// test.kt:6 component1:
|
||||
// test.kt:16 box: p:MyPair=MyPair
|
||||
// test.kt:10 component2:
|
||||
// test.kt:13 box:
|
||||
// test.kt:2 <init>: x:java.lang.String="X":java.lang.String, y:java.lang.String="Y":java.lang.String
|
||||
// test.kt:13 box:
|
||||
// test.kt:14 box: p:MyPair=MyPair
|
||||
// test.kt:4 component1:
|
||||
// test.kt:14 box: p:MyPair=MyPair
|
||||
// test.kt:8 component2:
|
||||
// EXPECTATIONS JVM
|
||||
// test.kt:16 box: p:MyPair=MyPair
|
||||
// test.kt:14 box: p:MyPair=MyPair
|
||||
// EXPECTATIONS JVM_IR
|
||||
// test.kt:16 box: p:MyPair=MyPair, o:java.lang.String="O":java.lang.String
|
||||
// test.kt:14 box: p:MyPair=MyPair, o:java.lang.String="O":java.lang.String
|
||||
// EXPECTATIONS JVM JVM_IR
|
||||
// test.kt:17 box: p:MyPair=MyPair, o:java.lang.String="O":java.lang.String, k:java.lang.String="K":java.lang.String
|
||||
// test.kt:15 box: p:MyPair=MyPair, o:java.lang.String="O":java.lang.String, k:java.lang.String="K":java.lang.String
|
||||
|
||||
// EXPECTATIONS JS_IR
|
||||
// test.kt:15 box:
|
||||
// test.kt:4 <init>: x="X":kotlin.String, y="Y":kotlin.String
|
||||
// test.kt:4 <init>: x="X":kotlin.String, y="Y":kotlin.String
|
||||
// test.kt:4 <init>: x="X":kotlin.String, y="Y":kotlin.String
|
||||
// test.kt:16 box: p=MyPair
|
||||
// test.kt:16 box: p=MyPair
|
||||
// test.kt:6 component1:
|
||||
// test.kt:16 box: p=MyPair, o="O":kotlin.String
|
||||
// test.kt:10 component2:
|
||||
// test.kt:17 box: p=MyPair, o="O":kotlin.String, k="K":kotlin.String
|
||||
// test.kt:13 box:
|
||||
// test.kt:2 <init>: x="X":kotlin.String, y="Y":kotlin.String
|
||||
// test.kt:2 <init>: x="X":kotlin.String, y="Y":kotlin.String
|
||||
// test.kt:2 <init>: x="X":kotlin.String, y="Y":kotlin.String
|
||||
// test.kt:14 box: p=MyPair
|
||||
// test.kt:14 box: p=MyPair
|
||||
// test.kt:4 component1:
|
||||
// test.kt:14 box: p=MyPair, o="O":kotlin.String
|
||||
// test.kt:8 component2:
|
||||
// test.kt:15 box: p=MyPair, o="O":kotlin.String, k="K":kotlin.String
|
||||
|
||||
+15
-17
@@ -1,5 +1,3 @@
|
||||
// IGNORE_BACKEND_K2_LIGHT_TREE: JVM_IR
|
||||
// Reason: KT-56755
|
||||
// FILE: test.kt
|
||||
class A {
|
||||
inline val s: Int
|
||||
@@ -13,20 +11,20 @@ fun box() {
|
||||
}
|
||||
|
||||
// EXPECTATIONS JVM JVM_IR
|
||||
// test.kt:10 box:
|
||||
// test.kt:4 <init>:
|
||||
// test.kt:10 box:
|
||||
// test.kt:11 box: a:A=A
|
||||
// test.kt:6 box: a:A=A, this_$iv:A=A, $i$f$getS:int=0:int
|
||||
// test.kt:11 box: a:A=A
|
||||
// test.kt:12 box: a:A=A, y:int=1:int
|
||||
// test.kt:13 box: a:A=A, y:int=2:int
|
||||
// test.kt:8 box:
|
||||
// test.kt:2 <init>:
|
||||
// test.kt:8 box:
|
||||
// test.kt:9 box: a:A=A
|
||||
// test.kt:4 box: a:A=A, this_$iv:A=A, $i$f$getS:int=0:int
|
||||
// test.kt:9 box: a:A=A
|
||||
// test.kt:10 box: a:A=A, y:int=1:int
|
||||
// test.kt:11 box: a:A=A, y:int=2:int
|
||||
|
||||
// EXPECTATIONS JS_IR
|
||||
// test.kt:10 box:
|
||||
// test.kt:4 <init>:
|
||||
// test.kt:6 box: a=A
|
||||
// test.kt:11 box: a=A
|
||||
// test.kt:12 box: a=A, y=1:number
|
||||
// test.kt:12 box: a=A, y=1:number
|
||||
// test.kt:13 box: a=A, y=2:number
|
||||
// test.kt:8 box:
|
||||
// test.kt:2 <init>:
|
||||
// test.kt:4 box: a=A
|
||||
// test.kt:9 box: a=A
|
||||
// test.kt:10 box: a=A, y=1:number
|
||||
// test.kt:10 box: a=A, y=1:number
|
||||
// test.kt:11 box: a=A, y=2:number
|
||||
|
||||
+5
-7
@@ -1,5 +1,3 @@
|
||||
// IGNORE_BACKEND_K2_LIGHT_TREE: JVM_IR
|
||||
// Reason: KT-56755
|
||||
// TARGET_BACKEND: JVM
|
||||
// WITH_STDLIB
|
||||
// FILE: test.kt
|
||||
@@ -13,8 +11,8 @@ fun box() {
|
||||
}
|
||||
|
||||
// EXPECTATIONS JVM JVM_IR
|
||||
// test.kt:12 box:
|
||||
// test.kt:6 <init>:
|
||||
// test.kt:12 box:
|
||||
// test.kt:8 foo: firstParam:int=4:int, secondParam:java.lang.String="":java.lang.String
|
||||
// test.kt:13 box:
|
||||
// test.kt:10 box:
|
||||
// test.kt:4 <init>:
|
||||
// test.kt:10 box:
|
||||
// test.kt:6 foo: firstParam:int=4:int, secondParam:java.lang.String="":java.lang.String
|
||||
// test.kt:11 box:
|
||||
|
||||
+13
-15
@@ -1,5 +1,3 @@
|
||||
// IGNORE_BACKEND_K2_LIGHT_TREE: JVM_IR
|
||||
// Reason: KT-56755
|
||||
// FILE: test.kt
|
||||
class Foo {
|
||||
inner class Bar {
|
||||
@@ -12,18 +10,18 @@ fun box() {
|
||||
}
|
||||
|
||||
// EXPECTATIONS JVM JVM_IR
|
||||
// test.kt:10 box:
|
||||
// test.kt:4 <init>:
|
||||
// test.kt:10 box:
|
||||
// test.kt:11 box: x:Foo=Foo
|
||||
// test.kt:5 <init>:
|
||||
// test.kt:11 box: x:Foo=Foo
|
||||
// test.kt:12 box: x:Foo=Foo
|
||||
// test.kt:8 box:
|
||||
// test.kt:2 <init>:
|
||||
// test.kt:8 box:
|
||||
// test.kt:9 box: x:Foo=Foo
|
||||
// test.kt:3 <init>:
|
||||
// test.kt:9 box: x:Foo=Foo
|
||||
// test.kt:10 box: x:Foo=Foo
|
||||
|
||||
// EXPECTATIONS JS_IR
|
||||
// test.kt:10 box:
|
||||
// test.kt:4 <init>:
|
||||
// test.kt:11 box: x=Foo
|
||||
// test.kt:5 <init>:
|
||||
// test.kt:5 <init>:
|
||||
// test.kt:12 box: x=Foo
|
||||
// test.kt:8 box:
|
||||
// test.kt:2 <init>:
|
||||
// test.kt:9 box: x=Foo
|
||||
// test.kt:3 <init>:
|
||||
// test.kt:3 <init>:
|
||||
// test.kt:10 box: x=Foo
|
||||
|
||||
+10
-12
@@ -1,5 +1,3 @@
|
||||
// IGNORE_BACKEND_K2_LIGHT_TREE: JVM_IR
|
||||
// Reason: KT-56755
|
||||
// Code generation problem with JVM backend.
|
||||
// IGNORE_BACKEND: JVM
|
||||
// FILE: test.kt
|
||||
@@ -12,15 +10,15 @@ suspend fun box() {
|
||||
}
|
||||
|
||||
// EXPECTATIONS JVM JVM_IR
|
||||
// test.kt:11 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:6 <init>:
|
||||
// test.kt:11 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:7 foo: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:11 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:12 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:9 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:4 <init>:
|
||||
// test.kt:9 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:5 foo: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:9 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:10 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
|
||||
// EXPECTATIONS JS_IR
|
||||
// test.kt:11 box: $completion=EmptyContinuation
|
||||
// test.kt:6 <init>:
|
||||
// test.kt:11 box: $completion=EmptyContinuation
|
||||
// test.kt:7 foo: $completion=EmptyContinuation
|
||||
// test.kt:9 box: $completion=EmptyContinuation
|
||||
// test.kt:4 <init>:
|
||||
// test.kt:9 box: $completion=EmptyContinuation
|
||||
// test.kt:5 foo: $completion=EmptyContinuation
|
||||
|
||||
+21
-23
@@ -1,5 +1,3 @@
|
||||
// IGNORE_BACKEND_K2_LIGHT_TREE: JVM_IR
|
||||
// Reason: KT-56755
|
||||
// Code generation problem with JVM backend.
|
||||
// IGNORE_BACKEND: JVM
|
||||
// FILE: test.kt
|
||||
@@ -17,29 +15,29 @@ suspend fun box() {
|
||||
}
|
||||
|
||||
// EXPECTATIONS JVM JVM_IR
|
||||
// test.kt:16 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:6 <init>:
|
||||
// test.kt:16 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:8 foo1:
|
||||
// test.kt:9 foo1: $continuation:kotlin.coroutines.Continuation=A$foo1$1, $result:java.lang.Object=null, l:long=42:long
|
||||
// test.kt:7 foo: $completion:kotlin.coroutines.Continuation=A$foo1$1
|
||||
// test.kt:14 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:4 <init>:
|
||||
// test.kt:14 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:6 foo1:
|
||||
// test.kt:7 foo1: $continuation:kotlin.coroutines.Continuation=A$foo1$1, $result:java.lang.Object=null, l:long=42:long
|
||||
// test.kt:5 foo: $completion:kotlin.coroutines.Continuation=A$foo1$1
|
||||
// test.kt:7 foo1: $continuation:kotlin.coroutines.Continuation=A$foo1$1, $result:java.lang.Object=null, l:long=42:long
|
||||
// test.kt:8 foo1: $continuation:kotlin.coroutines.Continuation=A$foo1$1, $result:java.lang.Object=null, l:long=42:long
|
||||
// test.kt:5 foo: $completion:kotlin.coroutines.Continuation=A$foo1$1
|
||||
// test.kt:8 foo1: $continuation:kotlin.coroutines.Continuation=A$foo1$1, $result:java.lang.Object=null, l:long=42:long
|
||||
// test.kt:9 foo1: $continuation:kotlin.coroutines.Continuation=A$foo1$1, $result:java.lang.Object=null, l:long=42:long
|
||||
// test.kt:10 foo1: $continuation:kotlin.coroutines.Continuation=A$foo1$1, $result:java.lang.Object=null, l:long=42:long
|
||||
// test.kt:7 foo: $completion:kotlin.coroutines.Continuation=A$foo1$1
|
||||
// test.kt:10 foo1: $continuation:kotlin.coroutines.Continuation=A$foo1$1, $result:java.lang.Object=null, l:long=42:long
|
||||
// test.kt:11 foo1: $continuation:kotlin.coroutines.Continuation=A$foo1$1, $result:java.lang.Object=null, l:long=42:long
|
||||
// test.kt:12 foo1: $continuation:kotlin.coroutines.Continuation=A$foo1$1, $result:java.lang.Object=null, l:long=42:long
|
||||
// test.kt:16 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:17 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:14 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:15 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
|
||||
// EXPECTATIONS JS_IR
|
||||
// test.kt:16 box: $completion=EmptyContinuation
|
||||
// test.kt:6 <init>:
|
||||
// test.kt:16 box: $completion=EmptyContinuation
|
||||
// test.kt:16 box: $completion=EmptyContinuation
|
||||
// test.kt:14 box: $completion=EmptyContinuation
|
||||
// test.kt:4 <init>:
|
||||
// test.kt:14 box: $completion=EmptyContinuation
|
||||
// test.kt:14 box: $completion=EmptyContinuation
|
||||
// test.kt:7 doResume:
|
||||
// test.kt:5 foo: $completion=$foo1COROUTINE$0
|
||||
// test.kt:8 doResume:
|
||||
// test.kt:5 foo: $completion=$foo1COROUTINE$0
|
||||
// test.kt:9 doResume:
|
||||
// test.kt:7 foo: $completion=$foo1COROUTINE$0
|
||||
// test.kt:10 doResume:
|
||||
// test.kt:7 foo: $completion=$foo1COROUTINE$0
|
||||
// test.kt:11 doResume:
|
||||
// test.kt:12 doResume: dead=kotlin.Long
|
||||
// test.kt:10 doResume: dead=kotlin.Long
|
||||
|
||||
+10
-12
@@ -1,5 +1,3 @@
|
||||
// IGNORE_BACKEND_K2_LIGHT_TREE: JVM_IR
|
||||
// Reason: KT-56755
|
||||
// Code generation problem with JVM backend.
|
||||
// IGNORE_BACKEND: JVM
|
||||
// FILE: test.kt
|
||||
@@ -13,15 +11,15 @@ suspend fun box() {
|
||||
|
||||
|
||||
// EXPECTATIONS JVM JVM_IR
|
||||
// test.kt:11 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:6 <init>:
|
||||
// test.kt:11 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:8 foo: $this$foo:A=A, $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:11 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:12 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:9 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:4 <init>:
|
||||
// test.kt:9 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:6 foo: $this$foo:A=A, $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:9 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:10 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
|
||||
// EXPECTATIONS JS_IR
|
||||
// test.kt:11 box: $completion=EmptyContinuation
|
||||
// test.kt:6 <init>:
|
||||
// test.kt:11 box: $completion=EmptyContinuation
|
||||
// test.kt:8 foo: <this>=A, $completion=EmptyContinuation
|
||||
// test.kt:9 box: $completion=EmptyContinuation
|
||||
// test.kt:4 <init>:
|
||||
// test.kt:9 box: $completion=EmptyContinuation
|
||||
// test.kt:6 foo: <this>=A, $completion=EmptyContinuation
|
||||
|
||||
+22
-24
@@ -1,5 +1,3 @@
|
||||
// IGNORE_BACKEND_K2_LIGHT_TREE: JVM_IR
|
||||
// Reason: KT-56755
|
||||
// Code generation problem with JVM backend.
|
||||
// IGNORE_BACKEND: JVM
|
||||
// FILE: test.kt
|
||||
@@ -19,29 +17,29 @@ suspend fun box() {
|
||||
// The lambda object constructor has a local variables table on the IR backend.
|
||||
|
||||
// EXPECTATIONS JVM JVM_IR
|
||||
// test.kt:16 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:6 <init>:
|
||||
// test.kt:16 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:9 foo1:
|
||||
// test.kt:10 foo1: $continuation:kotlin.coroutines.Continuation=TestKt$foo1$1, $result:java.lang.Object=null, $this$foo1:A=A, l:long=42:long
|
||||
// test.kt:8 foo: $this$foo:A=A, $completion:kotlin.coroutines.Continuation=TestKt$foo1$1
|
||||
// test.kt:10 foo1: $continuation:kotlin.coroutines.Continuation=TestKt$foo1$1, $result:java.lang.Object=null, $this$foo1:A=A, l:long=42:long
|
||||
// test.kt:11 foo1: $continuation:kotlin.coroutines.Continuation=TestKt$foo1$1, $result:java.lang.Object=null, l:long=42:long, $this$foo1:A=A
|
||||
// test.kt:8 foo: $this$foo:A=A, $completion:kotlin.coroutines.Continuation=TestKt$foo1$1
|
||||
// test.kt:14 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:4 <init>:
|
||||
// test.kt:14 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:7 foo1:
|
||||
// test.kt:8 foo1: $continuation:kotlin.coroutines.Continuation=TestKt$foo1$1, $result:java.lang.Object=null, $this$foo1:A=A, l:long=42:long
|
||||
// test.kt:6 foo: $this$foo:A=A, $completion:kotlin.coroutines.Continuation=TestKt$foo1$1
|
||||
// test.kt:8 foo1: $continuation:kotlin.coroutines.Continuation=TestKt$foo1$1, $result:java.lang.Object=null, $this$foo1:A=A, l:long=42:long
|
||||
// test.kt:9 foo1: $continuation:kotlin.coroutines.Continuation=TestKt$foo1$1, $result:java.lang.Object=null, l:long=42:long, $this$foo1:A=A
|
||||
// test.kt:6 foo: $this$foo:A=A, $completion:kotlin.coroutines.Continuation=TestKt$foo1$1
|
||||
// test.kt:9 foo1: $continuation:kotlin.coroutines.Continuation=TestKt$foo1$1, $result:java.lang.Object=null, l:long=42:long
|
||||
// test.kt:10 foo1: $continuation:kotlin.coroutines.Continuation=TestKt$foo1$1, $result:java.lang.Object=null, l:long=42:long
|
||||
// test.kt:11 foo1: $continuation:kotlin.coroutines.Continuation=TestKt$foo1$1, $result:java.lang.Object=null, l:long=42:long
|
||||
// test.kt:12 foo1: $continuation:kotlin.coroutines.Continuation=TestKt$foo1$1, $result:java.lang.Object=null, l:long=42:long
|
||||
// test.kt:13 foo1: $continuation:kotlin.coroutines.Continuation=TestKt$foo1$1, $result:java.lang.Object=null, l:long=42:long
|
||||
// test.kt:16 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:17 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:14 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:15 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
|
||||
// EXPECTATIONS JS_IR
|
||||
// test.kt:16 box: $completion=EmptyContinuation
|
||||
// test.kt:6 <init>:
|
||||
// test.kt:16 box: $completion=EmptyContinuation
|
||||
// test.kt:16 box: $completion=EmptyContinuation
|
||||
// test.kt:14 box: $completion=EmptyContinuation
|
||||
// test.kt:4 <init>:
|
||||
// test.kt:14 box: $completion=EmptyContinuation
|
||||
// test.kt:14 box: $completion=EmptyContinuation
|
||||
// test.kt:8 doResume:
|
||||
// test.kt:6 foo: <this>=A, $completion=$foo1COROUTINE$0
|
||||
// test.kt:9 doResume:
|
||||
// test.kt:6 foo: <this>=A, $completion=$foo1COROUTINE$0
|
||||
// test.kt:10 doResume:
|
||||
// test.kt:8 foo: <this>=A, $completion=$foo1COROUTINE$0
|
||||
// test.kt:11 doResume:
|
||||
// test.kt:8 foo: <this>=A, $completion=$foo1COROUTINE$0
|
||||
// test.kt:12 doResume:
|
||||
// test.kt:13 doResume: dead=kotlin.Long
|
||||
// test.kt:11 doResume: dead=kotlin.Long
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
// IGNORE_BACKEND_K2_LIGHT_TREE: JVM_IR
|
||||
// Reason: KT-56755
|
||||
// WITH_STDLIB
|
||||
|
||||
// FILE: test.kt
|
||||
@@ -16,40 +14,40 @@ suspend fun box() = foo(A()) { (x_param, _, y_param) ->
|
||||
}
|
||||
|
||||
// EXPECTATIONS JVM JVM_IR
|
||||
// test.kt:14 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:6 <init>:
|
||||
// test.kt:14 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:12 foo: a:A=A, block:kotlin.jvm.functions.Function2=TestKt$box$2, $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:7 component1:
|
||||
// test.kt:12 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:4 <init>:
|
||||
// test.kt:12 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:10 foo: a:A=A, block:kotlin.jvm.functions.Function2=TestKt$box$2, $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:5 component1:
|
||||
// EXPECTATIONS JVM
|
||||
// test.kt:14 invokeSuspend: $result:java.lang.Object=kotlin.Unit, $dstr$x_param$_u24__u24$y_param:A=A
|
||||
// test.kt:12 invokeSuspend: $result:java.lang.Object=kotlin.Unit, $dstr$x_param$_u24__u24$y_param:A=A
|
||||
// EXPECTATIONS JVM_IR
|
||||
// test.kt:14 invokeSuspend: $result:java.lang.Object=kotlin.Unit
|
||||
// test.kt:12 invokeSuspend: $result:java.lang.Object=kotlin.Unit
|
||||
// EXPECTATIONS JVM JVM_IR
|
||||
// test.kt:9 component3:
|
||||
// test.kt:7 component3:
|
||||
// EXPECTATIONS JVM_IR
|
||||
// test.kt:14 invokeSuspend: $result:java.lang.Object=kotlin.Unit, x_param:java.lang.String="O":java.lang.String
|
||||
// test.kt:15 invokeSuspend: $result:java.lang.Object=kotlin.Unit, x_param:java.lang.String="O":java.lang.String, y_param:java.lang.String="K":java.lang.String
|
||||
// test.kt:12 invokeSuspend: $result:java.lang.Object=kotlin.Unit, x_param:java.lang.String="O":java.lang.String
|
||||
// test.kt:13 invokeSuspend: $result:java.lang.Object=kotlin.Unit, x_param:java.lang.String="O":java.lang.String, y_param:java.lang.String="K":java.lang.String
|
||||
// EXPECTATIONS JVM
|
||||
// test.kt:14 invokeSuspend: $result:java.lang.Object=kotlin.Unit, $dstr$x_param$_u24__u24$y_param:A=A
|
||||
// test.kt:15 invokeSuspend: $result:java.lang.Object=kotlin.Unit, $dstr$x_param$_u24__u24$y_param:A=A, x_param:java.lang.String="O":java.lang.String, y_param:java.lang.String="K":java.lang.String
|
||||
// test.kt:12 invokeSuspend: $result:java.lang.Object=kotlin.Unit, $dstr$x_param$_u24__u24$y_param:A=A
|
||||
// test.kt:13 invokeSuspend: $result:java.lang.Object=kotlin.Unit, $dstr$x_param$_u24__u24$y_param:A=A, x_param:java.lang.String="O":java.lang.String, y_param:java.lang.String="K":java.lang.String
|
||||
// EXPECTATIONS JVM_IR
|
||||
// test.kt:-1 invoke: p1:A=A, p2:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// EXPECTATIONS JVM
|
||||
// test.kt:-1 invoke:
|
||||
// EXPECTATIONS JVM JVM_IR
|
||||
// test.kt:12 foo: a:A=A, block:kotlin.jvm.functions.Function2=TestKt$box$2, $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:16 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:10 foo: a:A=A, block:kotlin.jvm.functions.Function2=TestKt$box$2, $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
// test.kt:14 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
||||
|
||||
// EXPECTATIONS JS_IR
|
||||
// test.kt:14 box: $completion=EmptyContinuation
|
||||
// test.kt:6 <init>:
|
||||
// test.kt:14 box: $completion=EmptyContinuation
|
||||
// test.kt:14 box$slambda:
|
||||
// test.kt:14 box: $completion=EmptyContinuation
|
||||
// test.kt:12 foo: a=A, block=Function2, $completion=EmptyContinuation
|
||||
// test.kt:14 doResume:
|
||||
// test.kt:7 component1:
|
||||
// test.kt:14 doResume: x_param="O":kotlin.String
|
||||
// test.kt:9 component3:
|
||||
// test.kt:15 doResume: x_param="O":kotlin.String, y_param="K":kotlin.String
|
||||
// test.kt:12 box: $completion=EmptyContinuation
|
||||
// test.kt:4 <init>:
|
||||
// test.kt:12 box: $completion=EmptyContinuation
|
||||
// test.kt:12 box$slambda:
|
||||
// test.kt:12 box: $completion=EmptyContinuation
|
||||
// test.kt:10 foo: a=A, block=Function2, $completion=EmptyContinuation
|
||||
// test.kt:12 doResume:
|
||||
// test.kt:5 component1:
|
||||
// test.kt:12 doResume: x_param="O":kotlin.String
|
||||
// test.kt:7 component3:
|
||||
// test.kt:13 doResume: x_param="O":kotlin.String, y_param="K":kotlin.String
|
||||
|
||||
Reference in New Issue
Block a user