We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a930b0c commit c02648bCopy full SHA for c02648b
kotlinx-coroutines-core/common/src/internal/Scopes.kt
@@ -35,4 +35,6 @@ internal open class ScopeCoroutine<in T>(
35
36
internal class ContextScope(context: CoroutineContext) : CoroutineScope {
37
override val coroutineContext: CoroutineContext = context
38
+ // CoroutineScope is used intentionally for user-friendly representation
39
+ override fun toString(): String = "CoroutineScope(coroutineContext = $coroutineContext)"
40
}
0 commit comments