ReplOps.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
Satterthwaite, November 1, 1982 1:16 pm
Russ Atkinson (RRA) March 6, 1985 10:08:28 pm PST
DIRECTORY
Symbols USING [ISEIndex, CBTIndex],
SymbolTable USING [Base];
ReplOps: DEFINITIONS = {
BodyHandle: TYPE = RECORD [
stb: SymbolTable.Base,
bti: Symbols.CBTIndex];
IdHandle: TYPE = RECORD [
stb: SymbolTable.Base,
sei: Symbols.ISEIndex];
MatchedBodies: PROC [bodyL, bodyR: BodyHandle] RETURNS [BOOL];
MatchAttr: TYPE = {id, strings};
Unmatched: SIGNAL [attr: MatchAttr, id: IdHandle];
}.