Incremental compilation test data update after making package property backing field private

Original commit: 715893446c
This commit is contained in:
Max Kammerer
2015-10-19 21:13:53 +03:00
parent 406783b53d
commit 13aedbd161
9 changed files with 33 additions and 2 deletions
@@ -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
@@ -0,0 +1,3 @@
package constant
val X = 10
@@ -0,0 +1,3 @@
package constant
val X = 11
@@ -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