1 /* 2 * Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. 3 */ 4 @file:Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE") 5 package kotlin.coroutines.jvm.internal 6 7 import kotlinx.coroutines.debug.internal.* 8 import kotlin.coroutines.* 9 probeCoroutineCreatednull10internal fun <T> probeCoroutineCreated(completion: Continuation<T>): Continuation<T> = DebugProbesImpl.probeCoroutineCreated(completion) 11 12 internal fun probeCoroutineResumed(frame: Continuation<*>) = DebugProbesImpl.probeCoroutineResumed(frame) 13 14 internal fun probeCoroutineSuspended(frame: Continuation<*>) = DebugProbesImpl.probeCoroutineSuspended(frame) 15