1 @file:Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE") 2 package kotlin.coroutines.jvm.internal 3 4 import kotlinx.coroutines.debug.internal.* 5 import kotlin.coroutines.* 6 probeCoroutineCreatednull7internal fun <T> probeCoroutineCreated(completion: Continuation<T>): Continuation<T> = DebugProbesImpl.probeCoroutineCreated(completion) 8 9 internal fun probeCoroutineResumed(frame: Continuation<*>) = DebugProbesImpl.probeCoroutineResumed(frame) 10 11 internal fun probeCoroutineSuspended(frame: Continuation<*>) = DebugProbesImpl.probeCoroutineSuspended(frame) 12