WalkCParseTrees.mesa
Hopcroft, June 8, 1989 1:49:54 pm PDT
DIRECTORY
CirioTypes USING[TypedCode, CompilerContext],
CirioSyntacticOperations USING[ParseTree],
CParser USING [CParseTree];
WalkCParseTrees: CEDAR DEFINITIONS =
BEGIN
TypedCode: TYPE = CirioTypes.TypedCode;
CompilerContext: TYPE = CirioTypes.CompilerContext;
CreatePPTreeParseTree: PROC[cptree: CParser.CParseTree, cc: CompilerContext] RETURNS[CirioSyntacticOperations.ParseTree];
END..