DIRECTORY
Alloc: TYPE USING [FreeChunk, GetChunk, Handle, Notifier, Words],
Code:
TYPE
USING [
CodeNotImplemented, codeptr, codeStart, enableLevel, enableList,
fileLoc, xtracting, xtractsei, ZEROlexeme],
CodeDefs:
TYPE
USING [
Base, BYTE, CCIndex, CCItem, CCNull, ChunkIndex, CodeCCIndex,
CodeChunkType, codeType, EINull, EnableIndex, EnableItem, JumpCCIndex,
JumpCCNull, JumpType, LabelCCIndex, LabelCCNull, Lexeme, OpWordCount],
ComData: TYPE USING [typeSTRING],
FOpCodes: TYPE USING [qJREL, qLI],
LiteralOps: TYPE USING [Find, FindDescriptor, Value],
OpTableDefs: TYPE USING [InstLength],
P5: TYPE USING [NumberOfParams, P5Error, PushEffect],
P5U: TYPE USING [],
PackageSymbols: TYPE USING [ConstRecord, constType, WordIndex],
PrincOps: TYPE USING [FrameVec, LocalOverhead],
SourceMap: TYPE USING [Loc, nullLoc],
Stack: TYPE USING [Also, Check, stking],
SymbolOps:
TYPE
USING [
FirstCtxSe, NextSe, NormalType, RecordRoot, TypeRoot, UnderType, WordsForType],
Symbols:
TYPE
USING [
Base, BitAddress, CCBTIndex, CSEIndex, ISEIndex, ISENull,
RecordSEIndex, CTXIndex, SEIndex, SENull,
seType, typeANY, typeTYPE, WordLength],
Table: TYPE USING [Base, Limit],
Tree: TYPE USING [Base, Index, Link, Null, NullIndex, treeType],
TreeOps: TYPE USING [PopTree, PushNode, PushTree, ScanList, SetInfo];
BitAddress: TYPE = Symbols.BitAddress;
CSEIndex: TYPE = Symbols.CSEIndex;
ISEIndex: TYPE = Symbols.ISEIndex;
ISENull: ISEIndex = Symbols.ISENull;
RecordSEIndex: TYPE = Symbols.RecordSEIndex;
SEIndex: TYPE = Symbols.SEIndex;
SENull: SEIndex = Symbols.SENull;
WordLength: CARDINAL = Symbols.WordLength;