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