SXAccess.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
Written by Jacobi, April 2, 1985 5:11:35 pm PST
Last Edited by: Jacobi, April 2, 1985 5:12:18 pm PST
GBB July 12, 1985 6:41:38 pm PDT
SXAccess:
CEDAR
DEFINITIONS =
BEGIN
Analyze:
PROC [design:
CD.Design, hierarchyRoots:
CD.InstanceList, formatKey:
REF, stopFlag:
REF
BOOL←
NIL]
RETURNS [skipped:
BOOL];
--if stopFlag^ gets true, analysis might be aborted
--change later CD.InstanceList TO LIST OF CD.ObPtr
--verbose to TerminalIO
--only one analysis invocation at any time will come through
--variables only valid inside an analysis invocation
design: READONLY CD.Design;
formatKey: READONLY REF;
invocation: READONLY REF;
stopFlag: READONLY REF BOOL;
sxTech: READONLY REF SX.TechHandle;
END.