Lines Matching full:stacktrace
7 * [Stacktrace recovery](#stacktrace-recovery)
8 * [Stacktrace recovery machinery](#stacktrace-recovery-machinery)
17 …`kotlinx.coroutines` comes with additional features for debugging: debug mode, stacktrace recovery
31 ## Stacktrace recovery
33 Stacktrace recovery is another useful feature of debug mode. It is enabled by default in the debug …
34 but can be separately disabled by setting `kotlinx.coroutines.stacktrace.recovery` system property …
36 Stacktrace recovery tries to stitch asynchronous exception stacktrace with a stacktrace of the rece…
52 ### Stacktrace recovery machinery
54 This section explains the inner mechanism of stacktrace recovery and can be skipped.
56 …n between coroutines (e.g. through `withContext` or `Deferred.await` boundary), stacktrace recovery
57 … copy of the original exception (with the original exception as the cause), then rewrite stacktrace
95 [Stacktrace recovery](debugging.md#stacktrace-recovery)