SummonerLoadDeps.mesa
Mike Spreitzer February 9, 1987 2:35:59 pm PST
JKF January 11, 1989 10:00:17 am PST
DIRECTORY
Rope USING [ROPE];
SummonerLoadDeps: CEDAR DEFINITIONS = {
ROPE: TYPE ~ Rope.ROPE;
RecurseThroughInstall: PROC [file: ROPE, install: PROC [module, file: ROPE], run: PROC [package: ROPE], other: PROC [line: ROPE], checkVMap, recurseVMap: BOOLTRUE];
CantFind: SIGNAL [module, full: ROPE]; --Called by RecurseThroughInstall when it has to resort to a version map
}.