Update debug tests & incremental compilation tests depending on part class naming

This commit is contained in:
Dmitry Petrov
2015-07-27 17:38:52 +03:00
committed by Michael Bogdanov
parent cd6ff31129
commit 7af88f6797
115 changed files with 256 additions and 256 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
fun foo() {
"" // _DefaultPackage
"" // _DefaultPackageKt
}
@@ -2,6 +2,6 @@ package insertInBlock
fun foo() {
val lambda = {
val a = 1 // insertInBlock/AnonymousNamedFunction\$foo\$lambda\$1
val a = 1 // insertInBlock/AnonymousNamedFunctionKt\$foo\$lambda\$1
}()
}
@@ -4,5 +4,5 @@ class A {
}
fun A.foo() {
"" // a/ExtensionFunction
"" // a/ExtensionFunctionKt
}
+1 -1
View File
@@ -2,7 +2,7 @@ package test
fun foo(): String {
fun bar(): String {
return "" // test/LocalFunction\$foo\$1
return "" // test/LocalFunctionKt\$foo\$1
}
return bar()
}
@@ -1,5 +1,5 @@
package test
fun foo() {
"" // test/A
"" // test/AKt
}
@@ -1,5 +1,5 @@
package test
fun bar() {
foo(); // test/B
foo(); // test/BKt
}
@@ -1,5 +1,5 @@
package test
fun foo() {
"" // test/A1
"" // test/A1Kt
}
@@ -1,5 +1,5 @@
package test
fun bar() {
"" // test/A2
"" // test/A2Kt
}
@@ -1,5 +1,5 @@
package test
fun baz() {
"" // test/A3
"" // test/A3Kt
}
@@ -1,5 +1,5 @@
package test
fun quux() {
"" // test/A4
"" // test/A4Kt
}
+1 -1
View File
@@ -1,5 +1,5 @@
package test
fun foo() {
"" // test/Package
"" // test/PackageKt
}
@@ -1,3 +1,3 @@
package prop
val foo: Int = 5 // prop/TopLevelPropertyInitializer
val foo: Int = 5 // prop/TopLevelPropertyInitializerKt