diff options
author | Vadim Mishenev <vad-mishenev@yandex.ru> | 2022-06-08 01:15:23 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-08 01:15:23 +0300 |
commit | 8c2a79f39377892be44d752d0958efb9b83f1fce (patch) | |
tree | 8ee91d4fa05fa31fb82df9ac1639812ff2840d4c /plugins/base/src/main/kotlin/transformers/documentables | |
parent | 2e4121457a0fbae1a216007aee6c84a01be628f5 (diff) | |
download | dokka-8c2a79f39377892be44d752d0958efb9b83f1fce.tar.gz dokka-8c2a79f39377892be44d752d0958efb9b83f1fce.tar.bz2 dokka-8c2a79f39377892be44d752d0958efb9b83f1fce.zip |
Support definitely non-nullable types (#2520)
* Support definitely non-nullable types
[Definitely non-nullable types](https://github.com/Kotlin/KEEP/blob/c72601cf35c1e95a541bb4b230edb474a6d1d1a8/proposals/definitely-non-nullable-types.md) are enabled since Kotlin 1.7
Diffstat (limited to 'plugins/base/src/main/kotlin/transformers/documentables')
-rw-r--r-- | plugins/base/src/main/kotlin/transformers/documentables/ExtensionExtractorTransformer.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/base/src/main/kotlin/transformers/documentables/ExtensionExtractorTransformer.kt b/plugins/base/src/main/kotlin/transformers/documentables/ExtensionExtractorTransformer.kt index 2a8baf0b..73023a86 100644 --- a/plugins/base/src/main/kotlin/transformers/documentables/ExtensionExtractorTransformer.kt +++ b/plugins/base/src/main/kotlin/transformers/documentables/ExtensionExtractorTransformer.kt @@ -9,7 +9,6 @@ import kotlinx.coroutines.flow.Flow import kotlinx.coroutines.flow.flow import kotlinx.coroutines.flow.flowOn import kotlinx.coroutines.flow.toList -import org.jetbrains.dokka.base.signatures.KotlinSignatureUtils.driOrNull import org.jetbrains.dokka.links.DRI import org.jetbrains.dokka.links.DriOfAny import org.jetbrains.dokka.model.* @@ -91,6 +90,7 @@ private fun Callable.asPairsWithReceiverDRIs(): Sequence<Pair<DRI, Callable>> = // care about it since there is nowhere to put documentation of given extension. private fun Callable.findReceiverDRIs(bound: Bound): Sequence<DRI> = when (bound) { is Nullable -> findReceiverDRIs(bound.inner) + is DefinitelyNonNullable -> findReceiverDRIs(bound.inner) is TypeParameter -> if (this is DFunction && bound.dri == this.dri) generics.find { it.name == bound.name }?.bounds?.asSequence()?.flatMap(::findReceiverDRIs).orEmpty() |