Rewritten KDoc-link resolve and completion to work more reasonably

This commit is contained in:
Valentin Kipyatkov
2017-08-08 09:57:47 +03:00
parent 998814b1a1
commit e52c3b4c81
19 changed files with 333 additions and 143 deletions
@@ -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