package kotlin.coroutines.jvm.internal; import kotlin.coroutines.Continuation; import kotlin.jvm.internal.Intrinsics; import kotlinx.coroutines.debug.internal.DebugProbesImpl; import org.jetbrains.annotations.NotNull; /* compiled from: DebugProbes.kt */ /* loaded from: com.discord-118108.apk:DebugProbesKt.bin */ public final class DebugProbesKt { @NotNull public static final Continuation probeCoroutineCreated(@NotNull Continuation continuation) { Intrinsics.checkNotNullParameter(continuation, "completion"); return DebugProbesImpl.INSTANCE.probeCoroutineCreated$kotlinx_coroutines_core(continuation); } public static final void probeCoroutineResumed(@NotNull Continuation continuation) { Intrinsics.checkNotNullParameter(continuation, "frame"); DebugProbesImpl.INSTANCE.probeCoroutineResumed$kotlinx_coroutines_core(continuation); } public static final void probeCoroutineSuspended(@NotNull Continuation continuation) { Intrinsics.checkNotNullParameter(continuation, "frame"); DebugProbesImpl.INSTANCE.probeCoroutineSuspended$kotlinx_coroutines_core(continuation); } }