Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IntelliJ - Debugging set next statement?

How can I step back to a previous line when I'm debugging in IntelliJ?

I don't see anything in the debug menu or commands to do this.

like image 704
genxgeek Avatar asked Oct 04 '13 15:10

genxgeek


1 Answers

There's no backward debugging support in IDEA currently. Nevertheless (for Java) there is Drop Frame action and button on the debugger toolbar. It lets you go one frame up in the stack and re-enter the current method.

enter image description here

like image 184
Peter Gromov Avatar answered Nov 20 '22 04:11

Peter Gromov