70cf3e9c60
Support qualified names immediately after tag (@see or @param). Detect whether a tag is followed by a reference immediately while lexing, remove TEXT_OR_LINK token type. Remove duplicate nested KDocLink nodes from the PSI structure.
13 lines
108 B
Kotlin
Vendored
13 lines
108 B
Kotlin
Vendored
/**
|
|
* @see Foo.ba<caret>r
|
|
*/
|
|
fun xyzzy() {
|
|
}
|
|
|
|
class Foo {
|
|
fun bar() {
|
|
}
|
|
}
|
|
|
|
// REF: (in Foo).bar()
|