The Call Stack view in the Debugger window lists the hierarchy of method calls
made during execution of the current thread.
The method that was executing
when the thread stopped is at the top of the stack. The initial method is
at the bottom of the stack.
You switch the display of the Call Stack view by clicking in the toolbar
of the Debugger window.
The following table describes the icons used in the Call Stack view.
Icon | Description |
---|---|
![]() | The current method on the call stack |
![]() | A variable in scope at the time the method entered the call stack |
![]() | A super variable |
![]() | A static variable |
Right-clicking a method on the call stack displays a menu with the items listed in the following table.
Menu Item |
Description |
---|---|
Go to Source | Finds the method's location in the source code |
Properties | Displays the properties of the method |
See also | |
---|---|
Switching Between Threads to Debug |