DrcDebug.mesa
Copyright Ó 1987 by Xerox Corporation. All rights reserved.
Written by gbb, January 12, 1987 11:47:17 am PST
gbb May 28, 1987 12:49:11 pm PDT
Gli uomini vollero piuttosto le tenebre che la luce (Giovanni, III, 19.)
DIRECTORY
Core USING [Wire],
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];
ImportantMessage: PROC [msg: Rope.ROPE]
Displays the message in the message viewer and blinks it.
END.