<> <> <> <<>> DIRECTORY IPInterpreter USING [Ref]; IPBase: CEDAR DEFINITIONS ~ BEGIN <<>> Ref: TYPE ~ IPInterpreter.Ref; <> ApplyGET: PROC[Ref]; ApplyMAKEVECLU: PROC[Ref]; ApplyMAKEVEC: PROC[Ref]; ApplySHAPE: PROC[Ref]; ApplyGETPROP: PROC[Ref]; ApplyGETP: PROC[Ref]; ApplyMERGEPROP: PROC[Ref]; <> ApplyFGET: PROC[Ref]; ApplyFSET: PROC[Ref]; <> ApplyMAKESIMPLECO: PROC[Ref]; ApplyDO: PROC[Ref]; ApplyDOSAVE: PROC[Ref]; ApplyDOSAVEALL: PROC[Ref]; ApplyDOSAVESIMPLEBODY: PROC[Ref]; ApplyFINDOPERATOR: PROC[Ref]; <> ApplyPOP: PROC[Ref]; ApplyCOPY: PROC[Ref]; ApplyDUP: PROC[Ref]; ApplyROLL: PROC[Ref]; ApplyEXCH: PROC[Ref]; ApplyMARK: PROC[Ref]; ApplyUNMARK: PROC[Ref]; ApplyUNMARK0: PROC[Ref]; ApplyCOUNT: PROC[Ref]; ApplyNOP: PROC[Ref]; ApplyERROR: PROC[Ref]; <> ApplyIF: PROC[Ref]; ApplyIFELSE: PROC[Ref]; ApplyIFCOPY: PROC[Ref]; <> ApplyEQ: PROC[Ref]; ApplyGT: PROC[Ref]; ApplyGE: PROC[Ref]; ApplyAND: PROC[Ref]; ApplyOR: PROC[Ref]; ApplyNOT: PROC[Ref]; ApplyTYPE: PROC[Ref]; <> ApplyADD: PROC[Ref]; ApplySUB: PROC[Ref]; ApplyNEG: PROC[Ref]; ApplyABS: PROC[Ref]; ApplyFLOOR: PROC[Ref]; ApplyCEILING: PROC[Ref]; ApplyTRUNC: PROC[Ref]; ApplyROUND: PROC[Ref]; ApplyMUL: PROC[Ref]; ApplyDIV: PROC[Ref]; ApplyMOD: PROC[Ref]; ApplyREM: PROC[Ref]; END.