明壁幕府忍法帳 > Aptana Index > Home > Axway Appcelerator Studio > Axway Appcelerator Studio Guide > Web Development > JavaScript Development > Debugging JavaScript > Adding a breakpoint

2020.01.16 Ver.5 (2021.1.24)

Adding a breakpoint

Introduction

Add a breakpoint to your JavaScript code to stop the execution of your script at that exact point. Using breakpoints can help you determine the current value or type of a variable at that moment and other useful information.

You can either manually add a breakpoint to your code, or you can add an exception breakpoint to your code.

Instructions

Manually adding a breakpoint to your code

To manually add a breakpoint to your JavaScript code:

  1. Start the debugger and switch to the Debug perspective. (See Running the debugger if you need help.)
  2. Suspend the current JavaScript thread.
    1. In the Debug View, select the thread that you want to suspend.
    2. Click the Suspend button to suspend the JavaScript code on the first executed line. While the thread is suspended, your web browser user interface will be completely disabled.
  3. Add a breakpoint to your code.
    1. In the Editor or Outline View, navigate to the point in your code where you want to add a breakpoint.
    2. In the gray left margin of the Editor, double-click or right-click and select Toggle Breakpoint from the context menu (shown below).
  4. Click the Resume button to resume the execution of your code. Your code will be suspended again when execution hits the breakpoint that you set up.

Adding an exception breakpoint to your code

To add a breakpoint to your code so that execution automatically breaks on a certain type of exception:

  1. Open the file with your script in the appropriate Editor.
  2. From the Run menu, select Add JavaScript Exception Breakpoint... to open an Add JavaScript Exception Breakpoint pop-up window.
  3. On the Add JavaScript Exception Breakpoint pop-up window, select the type of exception that you would like to break on.
  4. Run the debugger (see Running the debugger) to debug your code.

Related Topics