-- File: SmallTestOps.mesa - Created by SETAR 14-Mar-86 16:42:50
DIRECTORY
Core,
CoreClasses,
CoreCompose,
Rope;
SmallTestOps: CEDAR DEFINITIONS = {
CellTypes: TYPE = {c1NA02A};
CellTypeArray: TYPE = ARRAY CellTypes OF Core.CellType;
MakeInstsProc: TYPE = PROC [context: CoreCompose.Context]
RETURNS [instList: CoreClasses.CellInstanceList ← NIL];
MakeWiresProc: TYPE = PROC RETURNS [Rope.ROPE];
MakepubWires1: MakeWiresProc;
MakeprivWires1: MakeWiresProc;
MakeInsts2: MakeInstsProc;
ct: CellTypeArray;
}.