I have a very big code, and I need to debug it fully, so I need to set breakpoint on every line of the code. Ho to do this?
-
7F7 not good enough for stepping line by line? :)Joachim Isaksson– Joachim Isaksson2013-07-20 18:23:04 +00:00Commented Jul 20, 2013 at 18:23
-
@JoachimIsaksson make that an answer.Jeroen Wiert Pluimers– Jeroen Wiert Pluimers2013-07-21 06:59:34 +00:00Commented Jul 21, 2013 at 6:59
Add a comment
|
1 Answer
No need to set breakpoints, F7 is the shortcut for "Debugger step into" which will do exactly what you're trying to do, step through the program stopping at every line.
If you want to skip certain method calls, F8 ("Debugger step over") can also be helpful.
1 Comment
Uwe Raabe
Let me add F4 for "Execute to cursor".