Add presentation renderer for field declared in constructor

This commit is contained in:
Nikolay Krasko
2013-05-08 18:15:55 +04:00
parent 0a2ca39f88
commit 3c087965f1
6 changed files with 58 additions and 2 deletions
@@ -0,0 +1,12 @@
package testing
open class Test(open var <caret>some: Int)
class OtherTestInConstructor(override var some: Int): Test(some)
class OtherTestInBody(some: Int, other: String): Test(some) {
override var some: Int = some
}
// REF: (testing.OtherTestInConstructor).some
// REF: (testing.OtherTestInBody).some