c0d54f9bbf
Make sure that, when ambiguous, both the package and the callable/class/property are resolved from KDoc reference. Do a slight refactoring of `KDocReferenceResolver` This behavior is also true for K1
13 lines
129 B
Kotlin
Vendored
13 lines
129 B
Kotlin
Vendored
package foo
|
|
|
|
interface foo
|
|
|
|
fun foo() {}
|
|
|
|
/**
|
|
* [<caret_1>foo]
|
|
*
|
|
* [<caret_2>foo.foo]
|
|
* [foo.<caret_3>foo]
|
|
*/
|
|
fun usage() {} |