-- WaterlilyDefs.mesa
-- Last edited by:
-- Kolling on February 23, 1983 11:48 am
DIRECTORY
Rope
USING[ROPE];
WaterlilyDefs: DEFINITIONS =
BEGIN
SymbolTableEntry: TYPE = RECORD[
timesInOldFile, timesInNewFile: INTEGER,
lineNumberInOldFile, lineNumberInNewFile: INTEGER,
posInOldFile, posInNewFile: INT,
rope: Rope.ROPE,
rbLLink, rbRLink: SymbolTableKey,
rbColor: BOOL];
SymbolTableKey: TYPE = REF SymbolTableEntry;
END.
Edit Log
Initial: Kolling: 29-Mar-82 14:52:02: defs file for Waterlily, so we can use RedBlackTree.