Add presentation renderer for field declared in constructor
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user