DIRECTORY
CodeDefs: TYPE USING [CaseCVState, CCIndex, EnableIndex, LabelCCIndex, Lexeme],
CompilerUtil: TYPE USING [],
P5: TYPE USING [Module],
SourceMap: TYPE USING [Loc],
Symbols: TYPE USING [ContextLevel, CTXIndex, ISEIndex, RecordSEIndex, CCBTIndex];
curctxlvl: PUBLIC Symbols.ContextLevel;
codeStart, codeptr: PUBLIC CCIndex;
bodyRetLabel, bodyComRetLabel: PUBLIC LabelCCIndex;
bodyRecurLabel: PUBLIC LabelCCIndex;
bodyInRecord, bodyOutRecord: PUBLIC Symbols.RecordSEIndex;
bodyStartLoc: PUBLIC SourceMap.Loc;
mainBody: PUBLIC BOOL;
ZEROlexeme: PUBLIC Lexeme.literal.word;
tailJumpOK: PUBLIC BOOL;
caseCVState: PUBLIC CaseCVState;
mwCaseCV: PUBLIC Lexeme;
fileLoc, inlineFileLoc: PUBLIC SourceMap.Loc;
tempcontext: PUBLIC Symbols.CTXIndex;
firstTemp, tempstart, framesz: PUBLIC CARDINAL;
xtracting: PUBLIC BOOL;
xtractlex: PUBLIC Lexeme;
xtractsei: PUBLIC Symbols.ISEIndex;
warnStackOverflow: PUBLIC BOOL;
inlineRetErrorLabel, inlineRetErrorListLabel: PUBLIC LabelCCIndex;
catchcount: PUBLIC CARDINAL;
catchoutrecord: PUBLIC Symbols.RecordSEIndex;
actenable: PUBLIC Symbols.CCBTIndex;
enableLevel: PUBLIC CARDINAL;
enableList: PUBLIC ARRAY [0..15] OF EnableIndex;
StackNotEmptyAtStatement: PUBLIC SIGNAL = CODE;
CodeNotImplemented: PUBLIC SIGNAL = CODE;
CodePassInconsistency: PUBLIC SIGNAL = CODE;