Each time I step with n
it prints out the next statement to be executed.
How do I see the next statement to be executed, as if I had typed n
, but without actually stepping the code?
Currently I am using where
, and this gives me the line number of the next statement and I can use list
to see some source code. Does it require two separate commands to get what I want?