<<>> <> <> <> <> DIRECTORY CirioTypes USING [TypedCode, CompilerContext], CirioSyntacticOperations USING [ParseTree], CParser USING [CParseTree]; WalkCParseTrees: CEDAR DEFINITIONS = BEGIN TypedCode: TYPE = CirioTypes.TypedCode; CompilerContext: TYPE = CirioTypes.CompilerContext; CreateMPTreeParseTree: PROC[cptree: CParser.CParseTree, cc: CompilerContext] RETURNS[CirioSyntacticOperations.ParseTree]; END..