NPGSOps.mesa
Copyright Ó 1985, 1988 by Xerox Corporation. All rights reserved.
Ed Satterthwaite, October 16, 1985 5:24:38 pm PDT
John Maxwell, August 8, 1983 11:14 am
Doug Wyatt, March 21, 1984 10:23:27 am PST
Russ Atkinson (RRA) March 19, 1985 9:55:06 am PST
JKF February 1, 1989 1:18:16 pm PST
DIRECTORY
NPGSCommandUtil USING [PairList],
Rope: TYPE USING [ROPE];
NPGSOps: CEDAR DEFINITIONS = {
NPGSPhase: TYPE = {format, lalr};
Generate: PROC[
source: Rope.ROPE,
args, results: NPGSCommandUtil.PairList,
switches: Rope.ROPE,
startPhase: PROC [NPGSPhase] RETURNS [BOOL],
princOps: BOOL]
RETURNS [success, warnings: BOOL];
NoSource: ERROR;
LockedSource: ERROR;
BadSemantics: ERROR;
}.