[AA] Shorten kdocs that became available because of newly added imports

This commit is contained in:
aleksandrina-streltsova
2023-06-14 09:59:18 +03:00
committed by teamcity
parent 88f2bf85eb
commit 9766270afa
5 changed files with 55 additions and 2 deletions
@@ -0,0 +1,14 @@
// FILE: main.kt
/**
* [a.b.c.dependency.Foo]
* [a.b.c.dependency.Foo.Nested]
*/
fun foo<caret_onAirContext>(): a.b.c.dependency.Foo = t
// FILE: dependency.kt
package a.b.c.dependency
class Foo {
class Nested
}
@@ -0,0 +1,10 @@
with DO_NOT_SHORTEN:
with SHORTEN_IF_ALREADY_IMPORTED:
with SHORTEN_AND_IMPORT:
[type] a.b.c.dependency.Foo
[kdoc] a.b.c.dependency.Foo
[kdoc] a.b.c.dependency.Foo
with SHORTEN_AND_STAR_IMPORT:
[type] a.b.c.dependency.Foo
[kdoc] a.b.c.dependency.Foo
[kdoc] a.b.c.dependency.Foo