Fix for KT-13400, KT-13389 Resolving FQN in quick doc

Problem related to not complete fix in KT-10398
This commit is contained in:
Simon Ogorodnik
2016-11-09 19:02:44 +03:00
parent b007d9b60f
commit 68d4a7abce
5 changed files with 47 additions and 3 deletions
+9
View File
@@ -0,0 +1,9 @@
package a.b.c
class D {
}
fun <caret>foo() {
}
+8
View File
@@ -0,0 +1,8 @@
package doc
fun topLevelFun() {}
/**
* @see doc.topLevelFun
*/
class Doc<caret>Referrer
+8
View File
@@ -0,0 +1,8 @@
package doc
val topLevelProperty = "A"
/**
* @see doc.topLevelProperty
*/
class Doc<caret>Referrer