
jvmMain.debug.internal.StackTraceFrame.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlinx-coroutines-core-jvm Show documentation
Show all versions of kotlinx-coroutines-core-jvm Show documentation
Coroutines support libraries for Kotlin
package kotlinx.coroutines.debug.internal
import kotlin.coroutines.jvm.internal.*
/**
* A stack-trace represented as [CoroutineStackFrame].
*/
@PublishedApi
internal class StackTraceFrame internal constructor(
override val callerFrame: CoroutineStackFrame?,
// Used by the IDEA debugger via reflection and must be kept binary-compatible, see KTIJ-24102
@JvmField public val stackTraceElement: StackTraceElement
) : CoroutineStackFrame {
override fun getStackTraceElement(): StackTraceElement = stackTraceElement
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy