File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
core/kotlinx-coroutines-debug/src Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 77package kotlinx.coroutines.debug
88
99import kotlinx.coroutines.*
10- import kotlinx.coroutines.internal.*
10+ import kotlinx.coroutines.internal.sanitize
1111import kotlin.coroutines.*
12+ import kotlin.coroutines.jvm.internal.*
1213
1314/* *
1415 * Class describing coroutine state.
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ package kotlinx.coroutines.debug.internal
66
77import kotlinx.coroutines.*
88import kotlinx.coroutines.debug.*
9- import kotlinx.coroutines.internal.*
9+ import kotlinx.coroutines.internal.artificialFrame
1010import net.bytebuddy.*
1111import net.bytebuddy.agent.*
1212import net.bytebuddy.dynamic.loading.*
@@ -15,6 +15,7 @@ import java.text.*
1515import java.util.*
1616import kotlin.collections.ArrayList
1717import kotlin.coroutines.*
18+ import kotlin.coroutines.jvm.internal.*
1819
1920/* *
2021 * Mirror of [DebugProbes] with actual implementation.
@@ -80,7 +81,7 @@ internal object DebugProbesImpl {
8081 val str = if (this !is JobSupport ) toString() else toDebugString()
8182 if (state == null ) {
8283 @Suppress(" INVISIBLE_REFERENCE" )
83- if (this !is ScopeCoroutine <* >) { // Do not print scoped coroutines
84+ if (this !is kotlinx.coroutines.internal. ScopeCoroutine <* >) { // Do not print scoped coroutines
8485 builder.append(" $str \n " )
8586 }
8687 } else {
You can’t perform that action at this time.
0 commit comments