WalkCedarParseTrees.mesa
Copyright Ó 1992 by Xerox Corporation. All rights reserved.
Sturgis: November 6, 1988 3:15:41 pm PST
Willie-s, May 15, 1992 2:35 pm PDT
DIRECTORY
CirioTypes USING[TypedCode, CompilerContext],
CirioSyntacticOperations USING[ParseTree],
MPTree USING[Link];
WalkCedarParseTrees: CEDAR DEFINITIONS =
BEGIN
TypedCode: TYPE = CirioTypes.TypedCode;
CompilerContext: TYPE = CirioTypes.CompilerContext;
CreateMPTreeParseTree: PROC[tree: MPTree.Link, cc: CompilerContext] RETURNS[CirioSyntacticOperations.ParseTree];
END..