Incremental compilation test data update after making package property backing field private
Original commit: 715893446c
This commit is contained in:
+6
@@ -71,4 +71,10 @@ public class IncrementalLazyCachesTestGenerated extends AbstractIncrementalLazyC
|
||||
doTest(fileName);
|
||||
}
|
||||
|
||||
@TestMetadata("topLevelPropertyAccess")
|
||||
public void testTopLevelPropertyAccess() throws Exception {
|
||||
String fileName = JetTestUtils.navigationMetadata("jps-plugin/testData/incremental/lazyKotlinCaches/topLevelPropertyAccess/");
|
||||
doTest(fileName);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -7,8 +7,10 @@ src/constant.kt
|
||||
End of files
|
||||
Cleaning output files:
|
||||
out/production/module/META-INF/module.kotlin_module
|
||||
out/production/module/constant/ConstantKt.class
|
||||
out/production/module/usage/UsageKt.class
|
||||
End of files
|
||||
Compiling files:
|
||||
src/constant.kt
|
||||
src/usage.kt
|
||||
End of files
|
||||
@@ -1,3 +1,3 @@
|
||||
package constant
|
||||
|
||||
val X = 10
|
||||
const val X = 10
|
||||
@@ -1,3 +1,3 @@
|
||||
package constant
|
||||
|
||||
val X = 11
|
||||
const val X = 11
|
||||
@@ -0,0 +1,7 @@
|
||||
Cleaning output files:
|
||||
out/production/module/META-INF/module.kotlin_module
|
||||
out/production/module/constant/ConstantKt.class
|
||||
End of files
|
||||
Compiling files:
|
||||
src/constant.kt
|
||||
End of files
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
package constant
|
||||
|
||||
val X = 10
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
package constant
|
||||
|
||||
val X = 11
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
Module 'module' production
|
||||
format-version.txt
|
||||
package-parts.tab
|
||||
proto.tab
|
||||
source-to-classes.tab
|
||||
Module 'module' tests
|
||||
@@ -0,0 +1,4 @@
|
||||
package usage
|
||||
|
||||
fun f(): Int =
|
||||
constant.X
|
||||
Reference in New Issue
Block a user