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/translators/descriptors | |
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/translators/descriptors')
-rw-r--r-- | plugins/base/src/main/kotlin/translators/descriptors/DefaultDescriptorToDocumentableTranslator.kt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/base/src/main/kotlin/translators/descriptors/DefaultDescriptorToDocumentableTranslator.kt b/plugins/base/src/main/kotlin/translators/descriptors/DefaultDescriptorToDocumentableTranslator.kt index 6c4d7a0d..bfd755cd 100644 --- a/plugins/base/src/main/kotlin/translators/descriptors/DefaultDescriptorToDocumentableTranslator.kt +++ b/plugins/base/src/main/kotlin/translators/descriptors/DefaultDescriptorToDocumentableTranslator.kt @@ -910,6 +910,9 @@ private class DokkaDescriptorVisitor( expandedType.toBound(), annotations() ) + is DefinitelyNotNullType -> DefinitelyNonNullable( + original.toBound() + ) else -> when (val ctor = constructor.declarationDescriptor) { is TypeParameterDescriptor -> TypeParameter( dri = DRI.from(ctor), |