Move debugger test data to the new location

This commit is contained in:
Yan Zhulanow
2019-09-27 00:13:53 +09:00
parent b4cc5703de
commit d8d81c51d7
1423 changed files with 0 additions and 0 deletions
@@ -0,0 +1,6 @@
@file:JvmName("ABC")
package a
fun foo() {
"" // a.ABC
}
@@ -0,0 +1,3 @@
fun foo() {
"" // _DefaultPackageKt
}
@@ -0,0 +1,7 @@
class A {
fun foo() {
{
"" // A\$foo\$1
}()
}
}
@@ -0,0 +1,7 @@
package insertInBlock
fun foo() {
val lambda = {
val a = 1 // insertInBlock.AnonymousNamedFunctionKt\$foo\$lambda\$1
}()
}
@@ -0,0 +1,9 @@
class A {
val x = go() // A
fun go() = 4 // A
fun foo() {
"" // A
}
}
@@ -0,0 +1,43 @@
class A {
companion object {
init {
1 + 1 // A
val a = 1 // A
fun foo() {
1 // A\$Companion\$1
}
}
val prop = 1 // A
val prop2: Int
get() {
val a = 1 + 1 // A\$Companion
return 1 // A\$Companion
}
val prop3: Int
get() = 1 // A\$Companion
fun foo() = 1 // A\$Companion
fun foo2() {
"" // A\$Companion
val o = object {
val p = 1 // A\$Companion\$foo2\$o\$1
val p2: Int
get() {
return 1 // A\$Companion\$foo2\$o\$1
}
}
}
}
}
interface T {
companion object {
val prop = 1 // T\$Companion
}
}
@@ -0,0 +1,6 @@
enum class E {
;
fun foo() {
"" // E
}
}
@@ -0,0 +1,8 @@
package a
class A {
}
fun A.foo() {
"" // a.ExtensionFunctionKt
}
@@ -0,0 +1,10 @@
class A {
fun foo() {
{
fun innerFoo() {
"" // A\$foo\$1\$1
}
innerFoo()
}()
}
}
@@ -0,0 +1,10 @@
class A {
fun foo() {
val a = {
fun innerFoo() {
val b = 1 // A\$foo\$a\$1\$1
}
innerFoo()
}()
}
}
@@ -0,0 +1,7 @@
class A {
class B {
fun foo() {
"" // A\$B
}
}
}
@@ -0,0 +1,8 @@
package test
fun foo(): String {
fun bar(): String {
return "" // test.LocalFunctionKt\$foo\$1
}
return bar()
}
@@ -0,0 +1,5 @@
package test
fun foo() {
"" // test/AKt
}
@@ -0,0 +1,5 @@
package test
fun bar() {
foo(); // test/BKt
}
@@ -0,0 +1,5 @@
package test
fun foo() {
"" // test/A1Kt
}
@@ -0,0 +1,5 @@
package test
fun bar() {
"" // test/A2Kt
}
@@ -0,0 +1,5 @@
package test
fun baz() {
"" // test/A3Kt
}
@@ -0,0 +1,5 @@
package test
fun quux() {
"" // test/A4Kt
}
@@ -0,0 +1,7 @@
object Obj {
val x = foo() // Obj
fun foo(): Int {
return 0 // Obj
}
}
@@ -0,0 +1,9 @@
class A {
fun foo() {
object {
fun bar() {
"" // A\$foo\$1
}
}
}
}
@@ -0,0 +1,5 @@
package test
fun foo() {
"" // test.PackageKt
}
@@ -0,0 +1,4 @@
class A {
val foo: Int
get() = 5 // A
}
@@ -0,0 +1,3 @@
class A {
val foo: Int = 5 // A
}
@@ -0,0 +1,3 @@
package prop
val foo: Int = 5 // prop.TopLevelPropertyInitializerKt
@@ -0,0 +1,5 @@
interface A {
fun foo() {
"" // A\$DefaultImpls
}
}
@@ -0,0 +1,4 @@
package test
class A { fun f() {} } // test.A
class B { fun g() {} } // test.B