internal.NoOpProbes.kt Maven / Gradle / Ivy
@file:Suppress("unused", "UNUSED_PARAMETER")
package kotlinx.coroutines.debug.internal
import kotlin.coroutines.*
/*
* Empty class used to replace installed agent in the end of debug session
*/
@JvmName("probeCoroutineResumed")
internal fun probeCoroutineResumedNoOp(frame: Continuation<*>) = Unit
@JvmName("probeCoroutineSuspended")
internal fun probeCoroutineSuspendedNoOp(frame: Continuation<*>) = Unit
@JvmName("probeCoroutineCreated")
internal fun probeCoroutineCreatedNoOp(completion: kotlin.coroutines.Continuation): kotlin.coroutines.Continuation = completion
© 2015 - 2025 Weber Informatics LLC | Privacy Policy