|
|
The JavaScript Debugger (beta) is currently available in preview mode only and is not a verified feature in ThingWorx Platform 10.0.x releases.
|
on the script editor. The script editor toolbar changes to the debugger toolbar. For more information about the script editor, see JavaScript Debugger.|
Button
|
Description
|
|---|---|
Start Debugging (BETA) |
Allows you to start the debugger.
|
Resume Debugging |
Allows you to run the debugger to the next breakpoint or end of the service.
|
Step over |
Allows you to execute the current line of code and proceed to the next line. If it is the last line, the step over returns you to the caller function. If the current line is a function or service with a breakpoint, the step over will pause at that breakpoint.
|
Step into |
Allows you to move the execution of the code to the next line while also going into any function that is called on that line. You can use this to examine the code inside the called function.
|
Step out |
Allows you return to the caller function after you have stepped into a different function during debugging and want to skip the rest of that function's execution.
|
Stop Debugging |
Allows you to stop the debugger.
|
Activate breakpoints or Deactivate breakpoints |
Allows you to switch between using breakpoints or deactivating breakpoints during debugging. If you deactivate breakpoints, all breakpoints will be ignored.
|