PGSOps.mesa
Copyright © 1985 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
DIRECTORY
CommandUtil: TYPE USING [PairList],
Rope: TYPE USING [ROPE];
PGSOps: DEFINITIONS = {
PGSPhase: TYPE = {format, lalr};
Generate: PROC[
source: Rope.ROPE,
args, results: CommandUtil.PairList,
switches: Rope.ROPE,
startPhase: PROC [PGSPhase] RETURNS [BOOL],
princOps: BOOL]
RETURNS [success, warnings: BOOL];
NoSource: ERROR;
LockedSource: ERROR;
BadSemantics: ERROR;
}.