Data Definition Language (DDL) Reference Manual

DDL Compiler Commands
Data Definition Language (DDL) Reference Manual529431-004
9-21
CLISTOUT
CLISTOUT
The CLISTOUT command includes user-defined dictionary comments in (or excludes
them from) source code files.
Default: CLISTOUT
CLISTOUT
includes user-defined dictionary comments in source code files.
CLISTOUTDETAIL
includes in source code files any user-defined dictionary comments on referenced
definitions that immediately precede the referring definition or record.
NOCLISTOUT
excludes user-defined dictionary comments from source code files.
CLISTOUT and CLISTOUTDETAIL reproduce comments only if the command
COMMENTS
on page 9-29 is also specified.
CLISTOUT reproduces comments on any open C, COBOL, DDL, FORTRAN, FUP,
Pascal (on D-series systems), pTAL, or TAL source code file.
You can suppress comments with NOCLISTOUT and then enable them with a
subsequent CLISTOUT.
CLISTOUT does not reproduce comments for referenced objects. To reproduce
comments associated with definitions referenced by another definition or by a record,
specify CLISTOUTDETAIL.
DDL Compiler Listing
*Comment for AA
DEF aa PIC X(24).
Definition AA size is 24 bytes.
Comment from source code file
Production comment
?NOCLISTIN
DEF bb PIC X(10).
Definition BB size is 10 bytes.
Production comment
?CLISTIN
*Comment for CC
DEF cc PIC 9(6).
Definition CC size is 24 bytes.
Comment from source code file
Production comment
{ [NO]CLISTOUT | CLISTOUTDETAIL }
Example 9-8. CLISTIN and NOCLISTIN Commands (page 2 of 2)