Replies: 2 comments
|
I understand the request, but as I know most of debuggers like gdb moves to the |
0 replies
|
A little late, but I just stumbled accross this: For cases where the Hope this helps someone. As an aside: In |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
When I have a line with two method calls (e.g. an inline conditional), I find it difficult to step into the 2nd method on that line.
What I'm experiencing is the following:
I'm only able to step into
#barif Istepwhen I'm at theendofbaz?, otherwise I miss my chance. I sometimes detect this scenario andstepwhen I should, but it's not easy to remember.It would be ideal if when I go
nextafter the last line ofbaz?, instead of going toend, I get thrown back into thebar if baz?line, giving me the opportunity tostep, this time intobar.All reactions