/* * Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. */ @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