File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -374,7 +374,9 @@ koverReport {
374374 " kotlinx.coroutines.debug.*" , // Tested by debug module
375375 " kotlinx.coroutines.channels.ChannelsKt__DeprecatedKt.*" , // Deprecated
376376 " kotlinx.coroutines.scheduling.LimitingDispatcher" , // Deprecated
377- " kotlinx.coroutines.scheduling.ExperimentalCoroutineDispatcher" // Deprecated
377+ " kotlinx.coroutines.scheduling.ExperimentalCoroutineDispatcher" , // Deprecated
378+ " _COROUTINE._CREATION" , // For IDE navigation
379+ " _COROUTINE._BOUNDARY" , // For IDE navigation
378380 )
379381 }
380382 }
Original file line number Diff line number Diff line change 22 * Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
33 */
44
5+ @file:OptIn(BetaInteropApi ::class )
6+
57package kotlinx.coroutines
68
79import kotlinx.cinterop.*
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ package kotlinx.coroutines
66
77import kotlinx.cinterop.*
88
9+ @OptIn(BetaInteropApi ::class )
910internal actual inline fun workerMain (block : () -> Unit ) {
1011 autoreleasepool {
1112 block()
You can’t perform that action at this time.
0 commit comments