The debug process can be controlled using the various buttons in the Debug view.
The Debug process will automatically stop at each breakpoint.
The various views will display information about the debugging process up to that point only.
You can use the various buttons in the debug view to decide how to continue with the debugging process:
Click the Resume button to continue the debugging process until the next breakpoint, or until the end of the debugging process.
Click the Terminate button to stop the debugging process.
Click the Step Over button to step over the next method call (without entering it) at the currently executing line of code. The method will still be executed.
Click the Step Return button to return from a method which has been stepped into. The remainder of the code that was skipped by returning is still executed.
Click the Step Into button to step into the next method call at the currently executing line of code.
Click the Use Step Filters button to change whether step filters should be used in the current Debug View.
Once the debugging process has terminated, you can click the Remove Terminated Launches button to remove any terminated debug sessions from the list.
During the debugging process (for PHP Script, PHP Web Page or URL), various views will provide the following information:
Debug View - Here you can control (stop, pause, and resume) the debugging process. You can also decide whether to step into, step over or step return (step out off) certain functions.
Variables - Will display the various variables in your script.
Breakpoints - Will display the breakpoints you have entered
Parameter Stack - Will display the parameters through which functions are reached.
Editor Window - Will display the code at the relevant sections, according to which line is selected in the Debug View window.
Debug Output - Will show the textual output of the script. This will be updated as the debugging process continues.
Browser Output - Will show the output of the script to a browser. This will be updated as the debugging process continues.
Console View (External Link) - Displays any error and warning messages.
Tasks View (External Link) - Displays tasks that were added to your script (if applicable).
During the debugging process (for JavaScript debugging), various views will provide the following information:
Debug View [Debug Perspective] - Here you can control (stop, pause, and resume) the debugging process. You can also decide whether to step into, step over or step return (step out off) certain functions.
Variables View [Debug Perspective] - Will display the various variables in your script.
Breakpoints View [Debug Perspective] - Will display the breakpoints you have entered.
Scripts View - Displays a list of available scripts. Double click a script to see it's code in an editor.
Editor Window - Will display the code at the relevant sections, according to which line is selected in the Debug View window.
Internal Web Browser - Displays the code you are debugging in the Browser.
Debug Output View [Debug Perspective] - Will show the textual output of the script. This will be updated as the debugging process continues.
Browser Output View [Debug Perspective] - Will show the output of the script to a browser. This will be updated as the debugging process continues.
Note:
See 'PHP Debug Perspective' for more on the views that will be displayed during Debugging.
|
|
|
Related Links: |
|
|
©1999-2013 Zend Technologies LTD. All rights reserved.