InstallationBasicComforts.mesa
Copyright Ó 1990, 1991, 1992, 1993 by Xerox Corporation. All rights reserved.
Chauser, July 16, 1991 9:37 am PDT
Peter B. Kessler, May 24, 1990 2:24 pm PDT
Willie-s, June 9, 1993 12:11 pm PDT
A few handy procedures that have no types, except ROPE's. These are what the higher level clients want.
DIRECTORY
Rope USING [ROPE];
InstallationBasicComforts:
CEDAR
DEFINITIONS ~ {
All these procedures use the global scope (the "outermost config" sometimes called the "virtual config")
BasicProcFromNamedInterface:
PROC [interfaceName, procName: Rope.
ROPE ]
RETURNS [
PROCEDURE
ANY
RETURNS
ANY];
BasicProcName:
PROC [p:
PROCEDURE
ANY
RETURNS
ANY]
RETURNS [Rope.
ROPE];
Returns a "best guess" as to the module name and procedure name for a mesa procedure.
BasicModuleName:
PROC [p:
PROCEDURE
ANY
RETURNS
ANY]
RETURNS [Rope.
ROPE];
Returns a "best guess" as to the module name for a mesa procedure.
}.