SMComp.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
last edit by Satterthwaite, May 22, 1986 4:48:53 pm PDT
DIRECTORY
IO: TYPE USING [STREAM],
SMOps: TYPE USING [MS],
SMTree: TYPE Tree USING [Link];
SMComp: CEDAR DEFINITIONS ~ {
OPEN Tree~~SMTree;
CompileAll: PROC[ms: SMOps.MS, t: Tree.Link, replace: BOOL] RETURNS[completed: BOOL];
LoadCompiler: PROC[out: IO.STREAM] RETURNS[success: BOOL];
}.