0

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?

2
  • 7
    F7 not good enough for stepping line by line? :) Commented Jul 20, 2013 at 18:23
  • @JoachimIsaksson make that an answer. Commented Jul 21, 2013 at 6:59

1 Answer 1

5

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.

Sign up to request clarification or add additional context in comments.

1 Comment

Let me add F4 for "Execute to cursor".

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.