<> <> DIRECTORY BasicTime USING [GMT, nullGMT], FS USING [OpenFile], Rope USING [ROPE]; AMFiles: CEDAR DEFINITIONS = BEGIN OPEN Rope; pathPrefixes: LIST OF ROPE; -- the search list for symbol and source files <> <">> <> PrependPathPrefix: PROC[pathPrefix: ROPE]; -- to pathPrefixes <> <">> FullFileName: PROC [shortName: ROPE, createTime: BasicTime.GMT _ BasicTime.nullGMT] RETURNS[fullName: ROPE]; <> <> <> <> <> OpenIt: PROC <> <> [shortName: ROPE, createTime: BasicTime.GMT _ BasicTime.nullGMT] RETURNS[fullName: ROPE, openFile: FS.OpenFile]; END.