<> <> <> <> DIRECTORY CodeDefs: TYPE USING [Lexeme, StoreOptions, VarIndex], Symbols: TYPE USING [SEIndex], Tree: TYPE USING [Link]; Counting: DEFINITIONS = { OPEN CodeDefs; Allocate: PROC[zone: Tree.Link, type: Symbols.SEIndex, catch: Tree.Link, pushSize: PROC]; FillCounted: PROC[space, source: VarIndex, options: StoreOptions, type: Symbols.SEIndex]; Free: PROC[var: VarIndex, counted: BOOL, zone, catch: Tree.Link]; LoadLongAddress: PROC[v: VarIndex]; LoadSystemZone: PROC; VarVarAssignCounted: PROC[to, from: VarIndex, options: StoreOptions, type: Symbols.SEIndex] RETURNS[Lexeme]; }.