Supported inlining constant properties.

This commit is contained in:
Evgeny Gerashchenko
2013-07-24 14:15:11 +04:00
parent b721b0211a
commit a13092e525
17 changed files with 205 additions and 40 deletions
@@ -0,0 +1,11 @@
class Class {
val p = 239
fun f() {
println(p)
}
}
fun f() {
println(Class().<caret>p)
}