DrcDebug.mesa
Copyright Ó 1987, 1988 by Xerox Corporation. All rights reserved.
Written by gbb, January 12, 1987 11:47:17 am PST
gbb January 16, 1988 3:25:49 pm PST
Gli uomini vollero piuttosto le tenebre che la luce (Giovanni, III, 19.)
DIRECTORY
Core USING [Wire],
CoreGeometry USING [Decoration, Transformation],
IO USING [STREAM],
Rope USING [ROPE];
DrcDebug: CEDAR DEFINITIONS
~ BEGIN
debug: BOOL;
trace, pause: ATOM;
break: SIGNAL;
dLog: IO.STREAM;
Debug: PROC;
For convenience in debugging. Call this procedure in the Interpreter.
PrintWire: PROC [w: Core.Wire];
GeometryInWire: PUBLIC PROC [w: Core.Wire, transf: CoreGeometry.Transformation, handle: CoreGeometry.Decoration];
ImportantMessage: PROC [msg: Rope.ROPE]
Displays the message in the message viewer and blinks it.
END.