FIR IDE: introduce KtFirConstructorDelegationReference
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
class A(a: Int) {
|
||||
constructor() : <caret>this(2)
|
||||
}
|
||||
|
||||
// REF: (in A).A(Int)
|
||||
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
class A(a: Int) {
|
||||
constructor(b: String) : this(2)
|
||||
|
||||
constructor() : <caret>this("2")
|
||||
}
|
||||
|
||||
// REF: (in A).A(String)
|
||||
|
||||
Reference in New Issue
Block a user