Native Inspect Manual (H06.07+)
Using Native Inspect
Native Inspect Manual—528122-006
2-20
Debugging Copy Libraries
Debugging Copy Libraries
Notes
•
The list command, by default, lists source from the file that contains the statement
at which execution is suspended. It lists one file at a time and does not show the
contents of included files.
•
You can view the contents of an included file by specifying the base file name and
the line number relative to the file you want to view.
(eInspect 3,1012):list
310 Test-SingleInclusion.
311 DISPLAY " ".
312 DISPLAY "Test-SingleInclusion: Begin".
313 ?SOURCE CLIBCLB1( RANGE-110-112 )
314 DISPLAY " ".
315 DISPLAY "Test-SingleInclusion: End".
(eInspect 3,1012):list CLIBCLB1:110
105 02 ALPHA-A26 PIC A(26) VALUE "abcdef".
106
107
108
109 ?SECTION RANGE-110-112
110 DISPLAY " CLIBCLB1: RANGE-110-112: line 110".
111 DISPLAY " CLIBCLB1: RANGE-110-112: line 111".
112 DISPLAY " CLIBCLB1: RANGE-110-112: line 112".
113
114
(eInspect 3,1012):b CLIBCLB1:110
Breakpoint 2 at 0x700063b0:0: file \YOSQA1.$DATA1.SHCOBAT.CLIBCLB1, line
110.
Breakpoint 3 at 0x70006f30:0: file \YOSQA1.$DATA1.SHCOBAT.CLIBCLB1, line
110.
Breakpoint 4 at 0x70007770:0: file \YOSQA1.$DATA1.SHCOBAT.CLIBCLB1, line
110.
(eInspect 3,1012):c
Continuing.
Breakpoint 2, COPYLIB-STATEMENTS () at \YOSQA1.$DATA1.SHCOBAT.CLIBCLB1:110
110 DISPLAY " CLIBCLB1: RANGE-110-112: line 110".
(eInspect 3,1012):list
105 02 ALPHA-A26 PIC A(26) VALUE "abcdef".
106
107
108
109 ?SECTION RANGE-110-112
110 DISPLAY " CLIBCLB1: RANGE-110-112: line 110".
111 DISPLAY " CLIBCLB1: RANGE-110-112: line 111".
112 DISPLAY " CLIBCLB1: RANGE-110-112: line 112".
113
114
(eInspect 3,1012):next
CLIBCLB1: RANGE-110-112: line 110
111 DISPLAY " CLIBCLB1: RANGE-110-112: line 111".
(eInspect 3,1012):next
CLIBCLB1: RANGE-110-112: line 111
112 DISPLAY " CLIBCLB1: RANGE-110-112: line 112".
(eInspect 3,1012):next
CLIBCLB1: RANGE-110-112: line 112
314 DISPLAY " ".










