is there a good way of debugging coroutines? I kno...
# coroutines
d
is there a good way of debugging coroutines? I know that that's quite a general question but is there some way that I can view the memory/variables of every method that is currently suspended if I set a breakpoint somewhere? I can run everything on a single threaded context if that makes anything easier
s
If you run it on a
TestCoroutineContext
then I think some of them are in the
queue
property. Not sure if it is all of them
d
hmm that's not quite what I meant but I'll keep that in mind nonetheless!