diff options
author | Vadim Mishenev <vad-mishenev@yandex.ru> | 2023-10-24 19:59:44 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-24 19:59:44 +0300 |
commit | 820e3b7cd449ba06f365eddbf9fe82cbfecc411e (patch) | |
tree | 047cdd852e394d924b2b58b0c0da61d54f0446ee | |
parent | b28120111d98cc9ce70f31266cc81a9ae85015f9 (diff) | |
download | dokka-820e3b7cd449ba06f365eddbf9fe82cbfecc411e.tar.gz dokka-820e3b7cd449ba06f365eddbf9fe82cbfecc411e.tar.bz2 dokka-820e3b7cd449ba06f365eddbf9fe82cbfecc411e.zip |
Opt-in `ExperimentalCoroutinesApi` for `newSingleThreadContext` (#3247)
It was marked experimental in a new version of coroutines https://github.com/Kotlin/kotlinx.coroutines/commit/042720589c6f438f77d84254bd2dceb569f0184, after 5a6fab535b68916a28d922d5d7a294fa432b7d6b
2 files changed, 3 insertions, 6 deletions
diff --git a/plugins/base/src/main/kotlin/generation/SingleModuleGeneration.kt b/plugins/base/src/main/kotlin/generation/SingleModuleGeneration.kt index 0ae6c265..8ea109b9 100644 --- a/plugins/base/src/main/kotlin/generation/SingleModuleGeneration.kt +++ b/plugins/base/src/main/kotlin/generation/SingleModuleGeneration.kt @@ -4,10 +4,7 @@ package org.jetbrains.dokka.base.generation -import kotlinx.coroutines.DelicateCoroutinesApi -import kotlinx.coroutines.Dispatchers -import kotlinx.coroutines.newSingleThreadContext -import kotlinx.coroutines.runBlocking +import kotlinx.coroutines.* import org.jetbrains.dokka.CoreExtensions import org.jetbrains.dokka.DokkaConfiguration import org.jetbrains.dokka.DokkaException @@ -66,7 +63,7 @@ public class SingleModuleGeneration(private val context: DokkaContext) : Generat /** * Implementation note: it runs in a separated single thread due to existing support of coroutines (see #2936) */ - @OptIn(DelicateCoroutinesApi::class) + @OptIn(DelicateCoroutinesApi::class, ExperimentalCoroutinesApi::class) public fun createDocumentationModels(): List<DModule> = newSingleThreadContext("Generating documentable model").use { coroutineContext -> // see https://github.com/Kotlin/dokka/issues/3151 runBlocking(coroutineContext) { context.configuration.sourceSets.parallelMap { sourceSet -> translateSources(sourceSet, context) }.flatten() diff --git a/subprojects/analysis-kotlin-descriptors/compiler/src/main/kotlin/org/jetbrains/dokka/analysis/kotlin/descriptors/compiler/translator/DefaultDescriptorToDocumentableTranslator.kt b/subprojects/analysis-kotlin-descriptors/compiler/src/main/kotlin/org/jetbrains/dokka/analysis/kotlin/descriptors/compiler/translator/DefaultDescriptorToDocumentableTranslator.kt index f20514cf..4d561189 100644 --- a/subprojects/analysis-kotlin-descriptors/compiler/src/main/kotlin/org/jetbrains/dokka/analysis/kotlin/descriptors/compiler/translator/DefaultDescriptorToDocumentableTranslator.kt +++ b/subprojects/analysis-kotlin-descriptors/compiler/src/main/kotlin/org/jetbrains/dokka/analysis/kotlin/descriptors/compiler/translator/DefaultDescriptorToDocumentableTranslator.kt @@ -124,7 +124,7 @@ internal class DefaultDescriptorToDocumentableTranslator( /** * Implementation note: it runs in a separated single thread due to existing support of coroutines (see #2936) */ - @OptIn(DelicateCoroutinesApi::class) + @OptIn(DelicateCoroutinesApi::class, ExperimentalCoroutinesApi::class) override fun translateClassDescriptor(descriptor: ClassDescriptor, sourceSet: DokkaSourceSet): DClasslike { val driInfo = DRI.from(descriptor.parents.first()).withEmptyInfo() |