DEBUG TYPE — MicroVMS 4.4
Displays source code corresponding to the specified line number
or specified line number range. In non-screen mode, the source
code is just written to the terminal. In screen mode, with a
source window displayed, the TYPE command positions the source
window around the specified line.
Format:
TYPE [ [modname\]line-number[:line-number]
[,[modname\]line-number[:line-number]...] ]
Additional information available:
Example
DBG> TYPE 1
module FORARRAY
1: PROGRAM FORARRAY
DBG> TYPE
module FORARRAY
2: C
DBG> TYPE 1:5
module FORARRAY
1: PROGRAM FORARRAY
2: C
3: C This test program is used to test
4: C FORTRAN array references in the Debugger.
5: C It allows testing of straight array references,
Parameters
line-number
The listing line number for the source line. You can specify a
single line, a list of lines, or a line number range. If
omitted, the debugger displays the next line after the one it
last displayed.
modname
Name of the module whose source you want displayed. If omitted,
the default is to determine the module from the current scope.