We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e00d7d8 commit a9c6159Copy full SHA for a9c6159
kotlinx-coroutines-core/common/src/internal/DispatchedContinuation.kt
@@ -23,7 +23,7 @@ internal class DispatchedContinuation<in T>(
23
@JvmField
24
@Suppress("PropertyName")
25
internal var _state: Any? = UNDEFINED
26
- override val callerFrame: CoroutineStackFrame? = continuation as? CoroutineStackFrame
+ override val callerFrame: CoroutineStackFrame? get() = continuation as? CoroutineStackFrame
27
override fun getStackTraceElement(): StackTraceElement? = null
28
@JvmField // pre-cached value to avoid ctx.fold on every resumption
29
internal val countOrElement = threadContextElements(context)
0 commit comments