<<>> <> <> 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..