Skip to content

Commit 9dbe2d8

Browse files
committed
Fix API check
1 parent 61266b0 commit 9dbe2d8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

kotlinx-coroutines-core/jvm/src/debug/ArtificialStackFrames.kt

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@
33
*/
44

55
package kotlinx.coroutines.debug
6+
import kotlinx.coroutines.*
67

7-
public class ArtificialStackFrames {
8+
@InternalCoroutinesApi
9+
internal class ArtificialStackFrames {
810
public fun coroutineCreation(): StackTraceElement = Exception().stackTrace.toList()[0]
911
public fun coroutineBoundary(): StackTraceElement = Exception().stackTrace.toList()[0]
10-
}
12+
}

0 commit comments

Comments
 (0)