Moving on the Call Stack

You can navigate through the call stack using the Callee and Caller buttons on the Edit/Debug toolbar. The call stack includes all methods that have been called but have not returned to the caller. The methods in the call stack are listed in the reverse order of how they were called. The method that was executing when the program stopped is at the top of the stack.

To move one level up the call stack:

To move one level down the call stack:

See also:

Threads/Stack Overview