Difference between revisions of "Troubleshooter Debugger Tab"

From Lianjapedia
Jump to: navigation, search
(The Debugger Tab)
(The JavaScript Debugger Tab)
Line 29: Line 29:
 
or the debug() function:
 
or the debug() function:
  
[[{{ns:file}}:troubleshooter_jsdebugger1cc.png|800px|left|border|link={{filepath:troubleshooter_jsdebugger1cc.png}}|Debug() Function]]
+
[[{{ns:file}}:troubleshooter_jsdebugger1cc.png|left|link={{filepath:troubleshooter_jsdebugger1cc.png}}|Debug() Function]]
 
<br clear=all>
 
<br clear=all>
  
Line 43: Line 43:
 
<br clear=all>
 
<br clear=all>
  
Alternatively, in the [[Pages Workspace]], clicking on the 'flag' icon in the header of a Section loads the JavaScript Scripting Libraries and/or source code for that Section into the JavaScript Debugger.  
+
Alternatively, in the [[Pages Workspace]], clicking on the 'flag' icon in the header of a Section loads the JavaScript Scripting Libraries and/or source code ([[WebView Section|WebView]] or [[Developing Custom UI Sections in JavaScript|Custom]]) for that Section into the JavaScript Debugger.  
  
[[{{ns:file}}:troubleshooter_jsdebugger1a.png|left|link={{filepath:troubleshooter_jsdebugger1a.png}}|Debug the code for this section]]
+
[[{{ns:file}}:troubleshooter_jsdebugger1a.png|800px|left|border|link={{filepath:troubleshooter_jsdebugger1a.png}}|Debug the code for this section]]
<br clear=all
+
<br clear=all>
  
 
Right-clicking in a loaded file displays the context menu:
 
Right-clicking in a loaded file displays the context menu:
 
   
 
   
[[{{ns:file}}:debug_tab_file_cm.png|left|link={{filepath:debug_tab_file_cm.png}}|Debugger Tab]]
+
[[{{ns:file}}:debug_tab_file_cm.png|left|link={{filepath:debug_tab_file_cm.png}}|Context Menu]]
 
<br clear=all>
 
<br clear=all>
  
 
Note: some menu options only operate when the file is in edit mode.  See [[#actionbar|actionbar]] below for how to switch mode.
 
Note: some menu options only operate when the file is in edit mode.  See [[#actionbar|actionbar]] below for how to switch mode.
  
While the debugger is active, hovering the mouse over a command, function, field or variable will display its Intellitip with information about its usage, syntax or definition.  For more about Intellitips and other Lianja CodeAssistant for Lianja/VFP features, see [[Script_Editor#The_Lianja_CodeAssistant_for_Lianja.2FVFP|Script Editor: The Lianja CodeAssistant]].
+
While the debugger is active, hovering the mouse over a variable will display its datatype, size and current value.
  
[[{{ns:file}}:troubleshooter_debugger3.png|left|link={{filepath:troubleshooter_debugger3.png}}|Debugger Tab]]
+
[[{{ns:file}}:troubleshooter_jsdebugger2.png|left|link={{filepath:troubleshooter_jsdebugger2.png}}|Variable]]
 
<br clear=all>
 
<br clear=all>
  
 
===Output===
 
===Output===
 
The Output panel displays program and [[#Command|Command Window]] output.
 
The Output panel displays program and [[#Command|Command Window]] output.
[[{{ns:file}}:troubleshooter_debugger4.png|left|link={{filepath:troubleshooter_debugger4.png}}|Debugger Tab]]
+
[[{{ns:file}}:troubleshooter_jsdebugger3.png|left|link={{filepath:troubleshooter_jsdebugger3.png}}|Output]]
 
<br clear=all>
 
<br clear=all>
  
 
Right-clicking in the Output panel displays the context menu:
 
Right-clicking in the Output panel displays the context menu:
  
[[{{ns:file}}:debug_tab_output_cm.png|left|link={{filepath:debug_tab_output_cm.png}}|Debugger Tab]]
+
[[{{ns:file}}:debug_tab_output_cm.png|left|link={{filepath:debug_tab_output_cm.png}}|Context Menu]]
 
<br clear=all>
 
<br clear=all>
  
 
===Command===
 
===Command===
The Debug Console contains a Lianja/VFP Command Window.  All Lianja/VFP [[:Category:Commands|commands]] and [[:Category:Functions|functions]] can be used in the Command Window apart from [[:Category:Looping Commands|flow control and looping commands]] and others that form a begin...end statement block.
+
The Debug Console contains a JavaScript Command Window.  
  
Note also, as in the floating [[Command Window]] and [[Console Workspace]]:
+
Output and errors are displayed in the [[#Output|Output panel]].
* The semi-colon ';' line continuation character is not supported.
+
* [[&]] macro substitution is supported.
+
 
+
Output is displayed in the '''Output''' panel; errors are reported in the [[Troubleshooter Error Viewer Tab|Error Viewer Tab]].
+
  
 
===Breakpoints===
 
===Breakpoints===
Breakpoints cause execution of the running program to pause before the line of code set as a breakpoint is run or when the condition of a conditional breakpoint evaluates to true.
+
Breakpoints cause execution of the running program to pause before the line of code set as a breakpoint is run.
  
To set a conditional breakpoint, click '''Add Conditional Breakpoint''' in the [[#actionbar|actionbar]] and enter the condition in the dialog that is displayed.
+
Breakpoints can be set and unset using the [[#actionbar|actionbar]] or by clicking in the line number column to the left of the selected line.
  
[[{{ns:file}}:troubleshooter_debugger5.png|left|link={{filepath:troubleshooter_debugger5.png}}|Debugger Tab]]
+
[[{{ns:file}}:troubleshooter_jsdebugger4.png|left|link={{filepath:troubleshooter_jsdebugger4.png}}|Breakpoints]]
<br clear=all>
+
 
+
Line breakpoints can be set and unset using the [[#actionbar|actionbar]] or by clicking in the line number column to the left of the selected line.
+
 
+
[[{{ns:file}}:troubleshooter_debugger6.png|left|link={{filepath:troubleshooter_debugger6.png}}|Debugger Tab]]
+
 
<br clear=all>
 
<br clear=all>
  
Line 96: Line 87:
 
Click '''Remove All Breakpoints''' in the [[#actionbar|actionbar]] to clear all current breakpoints.
 
Click '''Remove All Breakpoints''' in the [[#actionbar|actionbar]] to clear all current breakpoints.
  
[[{{ns:file}}:troubleshooter_debugger7.png|left|link={{filepath:troubleshooter_debugger7.png}}|Debugger Tab]]
+
[[{{ns:file}}:troubleshooter_jsdebugger5.png|left|link={{filepath:troubleshooter_jsdebugger5.png}}|Remove All Breakpoints]]
 
<br clear=all>
 
<br clear=all>
  
Line 102: Line 93:
 
Watches (or 'watchpoints') cause execution of the running program to pause after the value of a field or memory variable set as a watchpoint changes.  Watches are set using the [[#actionbar|actionbar]]:
 
Watches (or 'watchpoints') cause execution of the running program to pause after the value of a field or memory variable set as a watchpoint changes.  Watches are set using the [[#actionbar|actionbar]]:
  
[[{{ns:file}}:troubleshooter_debugger8.png|left|link={{filepath:troubleshooter_debugger8.png}}|Debugger Tab]]
+
[[{{ns:file}}:troubleshooter_jsdebugger6.png|left|link={{filepath:troubleshooter_jsdebugger6.png}}|Watches]]
 
<br clear=all>
 
<br clear=all>
  
The Watchpoints grid shows the name, data type and current value for currently set watchpoints.  Double-clicking on a grid row will clear that watchpoint.
+
The Watches grid shows the name, data type and current value for currently set watchpoints.  Double-clicking on a grid row will clear that watchpoint.
 
+
[[{{ns:file}}:troubleshooter_debugger9.png|left|link={{filepath:troubleshooter_debugger9.png}}|Debugger Tab]]
+
<br clear=all>
+
  
 
Click '''Remove All Watches''' in the [[#actionbar|actionbar]] to clear all current watchpoints.
 
Click '''Remove All Watches''' in the [[#actionbar|actionbar]] to clear all current watchpoints.
  
[[{{ns:file}}:troubleshooter_debugger10.png|left|link={{filepath:troubleshooter_debugger10.png}}|Debugger Tab]]
+
[[{{ns:file}}:troubleshooter_jsdebugger7.png|left|link={{filepath:troubleshooter_jsdebugger7.png}}|Remove All Watches]]
 
<br clear=all>
 
<br clear=all>
  
Line 118: Line 106:
 
The Call Stack grid shows the filename and line number for each program in the current stack.
 
The Call Stack grid shows the filename and line number for each program in the current stack.
  
[[{{ns:file}}:troubleshooter_debugger11.png|left|link={{filepath:troubleshooter_debugger11.png}}|Debugger Tab]]
+
[[{{ns:file}}:troubleshooter_jsdebugger8.png|left|link={{filepath:troubleshooter_jsdebugger8.png}}|Call Stack]]
 
<br clear=all>
 
<br clear=all>
  
 
===Globals===
 
===Globals===
 +
The Globals grid shows details of global objects and variables.
  
 +
[[{{ns:file}}:troubleshooter_jsdebugger9.png|left|link={{filepath:troubleshooter_jsdebugger9.png}}|Globals]]
 +
<br clear=all>
  
 
===Locals===
 
===Locals===
 
+
Not currently used.
  
 
===Actionbar===
 
===Actionbar===
Line 149: Line 140:
 
|-
 
|-
 
|valign="top"|Refresh all files  
 
|valign="top"|Refresh all files  
|valign="top"|Refresh all files in the debugger.  This will update them with any changes made using the [[Script Editor]] in the [[Apps Workspace]] or [[Library Workspace]].
+
|valign="top"|Refresh all files in the debugger.  This will update them with any changes made using the [[Script Editor]] in the [[Apps Workspace]].
 
|-
 
|-
 
|valign="top"|Step Over
 
|valign="top"|Step Over
Line 161: Line 152:
 
|-
 
|-
 
|valign="top"|Add Conditional Breakpoint
 
|valign="top"|Add Conditional Breakpoint
|valign="top"|Set a conditional breakpoint on a specified condition.  A dialog will be displayed so the condition can be entered.
+
|valign="top"|Not currently supported.
 
|-
 
|-
 
|valign="top"|Toggle Breakpoint
 
|valign="top"|Toggle Breakpoint
Line 174: Line 165:
 
|valign="top"|Remove All Watches
 
|valign="top"|Remove All Watches
 
|valign="top"|Remove all watchpoints.
 
|valign="top"|Remove all watchpoints.
|-
 
|valign="top"|List Status
 
|valign="top"|[[LIST STATUS|List the current data environment]] in the Output window.
 
|-
 
|valign="top"|List Memory
 
|valign="top"|[[LIST MEMORY|List the current memory variables]] in the Output window.
 
|-
 
|valign="top"|List Structure
 
|valign="top"|[[LIST STRUCTURE|List the structure]] of the currently selected table or cursor in the Output window.
 
 
|-
 
|-
 
|valign="top"|Clear
 
|valign="top"|Clear

Revision as of 11:19, 26 September 2019

Under Construction. Coming soon in Lianja v5.0

The Troubleshooter

The Troubleshooter provides a tabbed interface bringing together debugging, tracing and performance metrics to assist you in testing and tuning your Apps.

Troubleshooter


The JavaScript Debugger Tab

The JavaScript Debugger Tab contains the JavaScript Debugger. The tabbed upper container contains an Output panel and the files currently loaded in the JavaScript Debugger. The lower tabbed container contains the following:

  • Command Window
  • Breakpoints Grid
  • Watches Grid
  • Call Stack Grid
  • Globals Grid
  • Locals Grid

Below these are: a message line showing the current operation and an actionbar.

Activating the Debugger

As with all Troubleshooter tabs, the JavaScript Debugger Tab can be selected by clicking on its tab.

It can also be activated automatically, when a running script issues the debugger command:

Debugger Command


or the debug() function:

Debug() Function


Loading Files in the Debugger

Scripts can be loaded into the JavaScript Debugger from the Apps Workspace. Open the file (double-click the filename) in the Script Editor then click the Open file in Debugger toolbutton.

Open file in Debugger


Right-clicking on the tab containing the script name displays the context menu, which also includes an option to Open File In Debugger.

Open file in Debugger


Alternatively, in the Pages Workspace, clicking on the 'flag' icon in the header of a Section loads the JavaScript Scripting Libraries and/or source code (WebView or Custom) for that Section into the JavaScript Debugger.

Debug the code for this section


Right-clicking in a loaded file displays the context menu:

Context Menu


Note: some menu options only operate when the file is in edit mode. See actionbar below for how to switch mode.

While the debugger is active, hovering the mouse over a variable will display its datatype, size and current value.

Variable


Output

The Output panel displays program and Command Window output.

Output


Right-clicking in the Output panel displays the context menu:

Context Menu


Command

The Debug Console contains a JavaScript Command Window.

Output and errors are displayed in the Output panel.

Breakpoints

Breakpoints cause execution of the running program to pause before the line of code set as a breakpoint is run.

Breakpoints can be set and unset using the actionbar or by clicking in the line number column to the left of the selected line.

Breakpoints


The Breakpoints grid shows the filename and line number for currently set breakpoints. Double-clicking on a grid row will clear that breakpoint.

Click Remove All Breakpoints in the actionbar to clear all current breakpoints.

Remove All Breakpoints


Watches

Watches (or 'watchpoints') cause execution of the running program to pause after the value of a field or memory variable set as a watchpoint changes. Watches are set using the actionbar:

Watches


The Watches grid shows the name, data type and current value for currently set watchpoints. Double-clicking on a grid row will clear that watchpoint.

Click Remove All Watches in the actionbar to clear all current watchpoints.

Remove All Watches


Call Stack

The Call Stack grid shows the filename and line number for each program in the current stack.

Call Stack


Globals

The Globals grid shows details of global objects and variables.

Globals


Locals

Not currently used.

Actionbar

Action Description
Run/Continue Run or continue running the program to the next breakpoint or watchpoint or to the end if no breakpoints or watchpoints are set.
Stop Stop debugging.
Edit Code Put the currently selected file into edit mode.
Save Code Displayed when edit mode (Edit Code above) has been selected. Click to save any changes and exit edit mode.
Revert Code Displayed when edit mode (Edit Code above) has been selected. Click to cancel any changes and exit edit mode.
Refresh all files Refresh all files in the debugger. This will update them with any changes made using the Script Editor in the Apps Workspace.
Step Over Move to the next line of code without running the current line.
Step Into Run the current line of code then move to the next line.
Step Out Run until returning to the calling program, then move to the next line.
Add Conditional Breakpoint Not currently supported.
Toggle Breakpoint Set a breakpoint on the current line, or unset the breakpoint if one already exists.
Toggle Watch Set a watchpoint on the currently selected variable or field, or unset the watchpoint if one already exists.
Remove All Breakpoints Remove all breakpoints.
Remove All Watches Remove all watchpoints.
Clear Clear the Output window.

See Also

Command Window, Error Handling and Debugging, Script Editor