request: Skip step debug action
BugSeeker (anyone remember them?) used to have a function in debugger that was between "Step Into" and "Step Over" called maybe "Skip Step": if you cliked it for a method like
callMethod(var1.getAnotherValue(), var2.getOtherValue());
it'll enter directly callMethod and unlike "Step-Into" will not enter getAnotherValue() or getOtherValue().
Is there already such a request?
请先登录再写评论。
Yeah, http://www.intellij.net/tracker/idea/viewSCR?publicId=12126.
It's not exactly what you ask. Basically "Step Over" wouldn't operate per line, it would operate per statement, highlighting only the portion of the line that was about to be evaluated. the old VAJ worked this way.
Or even more cool:
http://www.intellij.net/tracker/idea/viewSCR?publicId=23622 .
Tom
What is the difference between this and
http://www.intellij.net/tracker/idea/viewSCR?publicId=12126
??
Mm, they look like dupes.