Debugger API does not step through "for" loops. Compile attached
program (SMHDebug5.java):
compile with javac -g SMJDebug5.java
run jdb
>stop in SMJDebug5.main
>run SMJDebug5
>next
>next
>next
now look at the screen. The println has already executed. It
should have traced through the for() loop.
This happens with my debugger too, so it's the API, not JDB.
program (SMHDebug5.java):
compile with javac -g SMJDebug5.java
run jdb
>stop in SMJDebug5.main
>run SMJDebug5
>next
>next
>next
now look at the screen. The println has already executed. It
should have traced through the for() loop.
This happens with my debugger too, so it's the API, not JDB.
- duplicates
-
JDK-4030486 Debugger does not deal well with multiple bytecode spans for one source line.
-
- Closed
-
- relates to
-
JDK-4046670 jdb does not always stop execution at next line with next command
-
- Closed
-