CROSSREF Manual
COBOL85
COBOL85 Identifiers
Table 7-1. COBOL85 Identifier Classes
CROSSREF Default COBOL85
Class Setting Type
_______________________________________________________________
CONDITIONS ON Condition names
CONSTANTS ON Symbolic characters
FILES ON COBOL file names
FUNCTIONS ON Routines that return a value
INDEXES ON Index names
LITERALS OFF Numeric and nonnumeric constants
MNEMONICS ON Mnemonic names, alphabet names,
class names
PROCEDURES ON PROGRAMS
PROGLABELS ON Labels, procedure names
(paragraph names, section names)
VARIABLES ON Data names
Notice that the default setting for LITERALS is OFF. If you want
numeric and nonnumeric constants to appear in the cross-reference
listing, you must set LITERALS to ON using the SET command.
By default, CROSSREF does not report unreferenced identifiers for
COBOL 74, COBOL85, or SCREEN COBOL. If you want unreferenced
identifiers to appear, you must set the UNREF attribute specifi-
cation to ON or ONLY. If you set UNREF to ON, CROSSREF collects
all identifiers, referenced and unreferenced, that belong to all
classes set to ON. If you set UNREF to ONLY, CROSSREF collects
only the unreferenced identifiers that belong to all classes set
to ON.
(STAT-2 and CLOSE-FROM-REQUESTOR do not appear in the cross-
reference listing shown in Figure 7-3 because the listing was
created with the UNREF attribute specification set to OFF.)
7-2