Documentation Comments
Use this form to comment on this topic. You can also provide any general observations about the Online Documentation, or request that additional information be added in a future release.
RealityV15.1Online Documentation (MoTW) Revision 7
D command (DataBasic debugger) (m618706+d.htm)
Displays the current state of DataBasic debugger controls and options, as set by various debugger commands.
D
Displays, in the following order:
A list of the active traces (T command).
A list of the active break conditions (B command).
The value associated with the execution counter, if non-zero (E command).
The value associated with the break inhibit counter, if greater than one (N command).
The source code view window values; that is, the number of lines from current line and number of lines prior to current line (V command).
Whether the global module trace is active (M command).
Whether the DEBUG statement is active (@ command).
Whether warnings are fatal or suppressed (WF and WS commands).
Whether cursor positioning is enabled (CP command).
The list of monitored modules and their monitor types (MA, ME, MR and MD commands).
*D
T1 STRING
T2 DATE
T3 ITEM
B1 ITEM=15
B2 $ = [4+2]
B3 $ = 17
*
Shows that:
The values of variables STRING, DATE and ITEM are being traced.
A break point has been set to break into the program when ITEM equals 15.
Break points have been set on program lines 6 (4+2 - the second line of the item included at source line 4) and 17. Refer to the B and L commands for details of how line numbers can be specified.
*D
E = 1
V = 1
DEBUG Statement Suppressed
*
*t/a+
*b £=4+
*e5
*n99
*v2,1
*M
On *@
On *wf
On *cp
Cursor Positioning Inhibited *ma M.SUB1
Added *ME M.SUB2
Added *MR M.SUB3
Added *D
T1 /a B1 £=4 E = 5 N = 99 V = 2,1 M On DEBUG Statement Suppressed Warnings Fatal Cursor Positioning Inhibited Monitored Code Modules: M.SUB1 (A) M.SUB2 (E) M.SUB3 (R) *