Preserving annotations in incremental compilation.

Original commit: 2259cc605f
This commit is contained in:
Evgeny Gerashchenko
2014-07-01 19:57:36 +04:00
parent bf5c65bef6
commit 1f91c2b724
5 changed files with 33 additions and 0 deletions
@@ -0,0 +1,13 @@
package test
annotation class Anno
[Anno] fun f() {
}
[Anno] val v1 = ""
var v2: String
get() = ""
[Anno] set(value) {
}
@@ -0,0 +1,7 @@
Cleaning output files:
out/production/module/test/TestPackage-other-*.class
out/production/module/test/TestPackage.class
End of files
Compiling files:
src/other.kt
End of files
@@ -0,0 +1,4 @@
package test
fun dummyFunction() {
}
@@ -0,0 +1,4 @@
package test
fun dummyFunction() {
}