We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01703c3 commit 298f0d7Copy full SHA for 298f0d7
kotlinx-coroutines-core/nativeDarwin/src/Dispatchers.kt
@@ -66,7 +66,7 @@ private class DarwinMainDispatcher(
66
}
67
68
override fun toString(): String =
69
- "MainDispatcher${ if(invokeImmediately) "[immediate]" else "" }"
+ if (invokeImmediately) "Dispatchers.Main.immediate" else "Dispatchers.Main"
70
71
72
private typealias TimerBlock = (CFRunLoopTimerRef?) -> Unit
0 commit comments