WalkCedarParseTrees.mesa
Sturgis: November 6, 1988 3:15:41 pm PST
DIRECTORY
CirioTypes USING[TypedCode, CompilerContext],
CirioSyntacticOperations USING[ParseTree],
PPTree USING[Link];
WalkCedarParseTrees: CEDAR DEFINITIONS =
BEGIN
TypedCode: TYPE = CirioTypes.TypedCode;
CompilerContext: TYPE = CirioTypes.CompilerContext;
CreatePPTreeParseTree: PROC[tree: PPTree.Link, cc: CompilerContext] RETURNS[CirioSyntacticOperations.ParseTree];
END..