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 /plugins/base/src | |
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
Diffstat (limited to 'plugins/base/src')
-rw-r--r-- | plugins/base/src/main/kotlin/generation/SingleModuleGeneration.kt | 7 |
1 files changed, 2 insertions, 5 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() |