File tree 2 files changed +5
-3
lines changed
core/kotlinx-coroutines-debug/src
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 7
7
package kotlinx.coroutines.debug
8
8
9
9
import kotlinx.coroutines.*
10
- import kotlinx.coroutines.internal.*
10
+ import kotlinx.coroutines.internal.sanitize
11
11
import kotlin.coroutines.*
12
+ import kotlin.coroutines.jvm.internal.*
12
13
13
14
/* *
14
15
* Class describing coroutine state.
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ package kotlinx.coroutines.debug.internal
6
6
7
7
import kotlinx.coroutines.*
8
8
import kotlinx.coroutines.debug.*
9
- import kotlinx.coroutines.internal.*
9
+ import kotlinx.coroutines.internal.artificialFrame
10
10
import net.bytebuddy.*
11
11
import net.bytebuddy.agent.*
12
12
import net.bytebuddy.dynamic.loading.*
@@ -15,6 +15,7 @@ import java.text.*
15
15
import java.util.*
16
16
import kotlin.collections.ArrayList
17
17
import kotlin.coroutines.*
18
+ import kotlin.coroutines.jvm.internal.*
18
19
19
20
/* *
20
21
* Mirror of [DebugProbes] with actual implementation.
@@ -80,7 +81,7 @@ internal object DebugProbesImpl {
80
81
val str = if (this !is JobSupport ) toString() else toDebugString()
81
82
if (state == null ) {
82
83
@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
84
85
builder.append(" $str \n " )
85
86
}
86
87
} else {
You can’t perform that action at this time.
0 commit comments