• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3  */
4 
5 @file:Suppress("unused", "UNUSED_PARAMETER")
6 
7 package kotlinx.coroutines.debug.internal
8 
9 import kotlin.coroutines.*
10 
11 /*
12  * Empty class used to replace installed agent in the end of debug session
13  */
14 @JvmName("probeCoroutineResumed")
probeCoroutineResumedNoOpnull15 internal fun probeCoroutineResumedNoOp(frame: Continuation<*>) = Unit
16 @JvmName("probeCoroutineSuspended")
17 internal fun probeCoroutineSuspendedNoOp(frame: Continuation<*>) = Unit
18 @JvmName("probeCoroutineCreated")
19 internal fun <T> probeCoroutineCreatedNoOp(completion: kotlin.coroutines.Continuation<T>): kotlin.coroutines.Continuation<T> = completion
20