Supported properties in partial compilation of package.

This commit is contained in:
Evgeny Gerashchenko
2014-02-19 22:17:32 +04:00
parent 98401d109f
commit 733de56178
10 changed files with 171 additions and 56 deletions
@@ -1,9 +1,24 @@
package test
fun bar(i: Int): String {
simpleVar = ":) " + simpleVar
return "$i ${quux()} $i"
}
fun quux(): String {
return "quux"
}
}
var simpleVar = prop1
var fieldlessVar: String
get() = ""
set(value) {}
deprecated("")
val fieldlessValWithAnnotation: String
get() = ""
var delegated: String by kotlin.properties.Delegates.notNull()