aboutsummaryrefslogtreecommitdiff
path: root/kotlinx-coroutines-core/jvm/src/internal/ProbesSupport.kt
blob: 48e01fbeffb1fec292252f66ca2423076c248d42 (plain)
1
2
3
4
5
6
7
8
9
10
11
/*
 * Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
 */
@file:Suppress("NOTHING_TO_INLINE", "INVISIBLE_REFERENCE", "INVISIBLE_MEMBER")

package kotlinx.coroutines.internal

import kotlin.coroutines.*
import kotlin.coroutines.jvm.internal.probeCoroutineCreated as probe

internal actual inline fun <T> probeCoroutineCreated(completion: Continuation<T>): Continuation<T> = probe(completion)