128
129
130
131
132
133
134
135
136
137
138
139
140
  | 
   type Reference is new Printers.Printer with record
      Exp : Trees.Reference;
   end record;
   type Cursor is new Descriptor with record
      Exp : Trees.Reference := Trees.Create (Create_Tree'Access);
      Position : Node_Access := null;
      Opening : Boolean := False;
   end record;
end Natools.S_Expressions.Generic_Caches;
 | 
|
  | 
128
129
130
131
132
133
134
135
136
137
138
139
140
  | 
   type Reference is new Printers.Printer with record
      Exp : Trees.Reference;
   end record;
   type Cursor is new Descriptor with record
      Exp : Trees.Reference := Trees.Null_Reference;
      Position : Node_Access := null;
      Opening : Boolean := False;
   end record;
end Natools.S_Expressions.Generic_Caches;
 |