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