File tree 3 files changed +6
-1
lines changed
3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -374,7 +374,9 @@ koverReport {
374
374
" kotlinx.coroutines.debug.*" , // Tested by debug module
375
375
" kotlinx.coroutines.channels.ChannelsKt__DeprecatedKt.*" , // Deprecated
376
376
" 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
378
380
)
379
381
}
380
382
}
Original file line number Diff line number Diff line change 2
2
* Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3
3
*/
4
4
5
+ @file:OptIn(BetaInteropApi ::class )
6
+
5
7
package kotlinx.coroutines
6
8
7
9
import kotlinx.cinterop.*
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ package kotlinx.coroutines
6
6
7
7
import kotlinx.cinterop.*
8
8
9
+ @OptIn(BetaInteropApi ::class )
9
10
internal actual inline fun workerMain (block : () -> Unit ) {
10
11
autoreleasepool {
11
12
block()
You can’t perform that action at this time.
0 commit comments