Rewritten KDoc-link resolve and completion to work more reasonably
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
package a
|
||||
|
||||
class C {
|
||||
|
||||
class B {
|
||||
/**
|
||||
* [a.C.B.<caret>]
|
||||
*/
|
||||
fun member() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
fun B.ext() {
|
||||
|
||||
}
|
||||
|
||||
val B.extVal: String
|
||||
get() = ""
|
||||
}
|
||||
|
||||
fun C.B.topExt() {
|
||||
|
||||
}
|
||||
|
||||
val C.B.topExtVal: String
|
||||
get() = ""
|
||||
|
||||
|
||||
// EXIST: ext
|
||||
// EXIST: extVal
|
||||
// EXIST: topExt
|
||||
// EXIST: topExtVal
|
||||
Reference in New Issue
Block a user