-- SMP4.mesa
-- last edit by Schmidt, May 12, 1983 10:37 am
-- last edit by Satterthwaite, May 26, 1983 9:20 am
-- the pass in the Cedar modeller that invokes the compiler

DIRECTORY
  SMOps: TYPE USING [MS],
  SMTree: TYPE Tree USING [Link];
	
SMP4: CEDAR DEFINITIONS ~ {

  OuterCompEval: PROC[
	ms: SMOps.MS, t: SMTree.Link, confirm: REF BOOL, replacement: BOOL]
    RETURNS[errors: BOOL];

  LoadCompiler: PROC[ms: SMOps.MS] RETURNS[success: BOOL]; 

  }.