wisitoken_4.2.1_dc778486/wisitoken.ads

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
--  Abstract:
--
--  Root of WisiToken lexer/parser generator and exector.
--
--  The token type is an integer subtype, not an enumeration type, to
--  avoid making this package generic, which would make all other
--  packages generic.
--
--  Additional information about a token can be stored in the
--  'augmented' field of the syntax tree; see
--  wisitoken-syntax_trees.ads.
--
--  References:
--
--  [dragon] "Compilers Principles, Techniques, and Tools" by Aho,
--  Sethi, and Ullman (aka: "The [Red] Dragon Book" due to the dragon
--  on the cover).
--
--  [gnu_coding] https://www.gnu.org/prep/standards/standards.html#Errors
--
--  [Lahav 2004] - Elad Lahav. Efficient Semantic Analysis for Text
--  Editors. final project for CS842 School of Computer Science,
--  University of Waterloo.
--
--  [Wagner Graham 1998] - Tim A. Wagner and Susan L. Graham.
--  Efficient and flexible incremental parsing. ACM Transactions on
--  Programming Languages and Systems,20(5):980-1013, 1998
--
--  Copyright (C) 2009, 2010, 2013 - 2015, 2017 - 2023 Free Software Foundation, Inc.
--
--  This file is part of the WisiToken package.
--
--  This library is free software;  you can redistribute it and/or modify it
--  under terms of the  GNU General Public License  as published by the Free
--  Software  Foundation;  either version 3,  or (at your  option) any later
--  version. This library is distributed in the hope that it will be useful,
--  but WITHOUT ANY WARRANTY;  without even the implied warranty of MERCHAN-
--  TABILITY or FITNESS FOR A PARTICULAR PURPOSE.
--
--  As a special exception under Section 7 of GPL version 3, you are granted
--  additional permissions described in the GCC Runtime Library Exception,
--  version 3.1, as published by the Free Software Foundation.
--
--  This software was originally developed with the name OpenToken by
--  the following company, and was released as open-source software as
--  a service to the community:
--
--           FlightSafety International Simulation Systems Division
--                    Broken Arrow, OK  USA  918-259-4000

pragma License (Modified_GPL);

with Ada.Containers.Doubly_Linked_Lists;
with Ada.Containers.Indefinite_Hashed_Maps;
with Ada.Containers.Vectors;
with Ada.Streams;
with Ada.Strings.Equal_Case_Insensitive;
with Ada.Strings.Hash_Case_Insensitive;
with Ada.Strings.Maps;
with Ada.Strings.Unbounded;
with Ada.Text_IO;
with GNATCOLL.Memory;
with SAL.Gen_Trimmed_Image;
with SAL.Gen_Unbounded_Definite_Queues;
with SAL.Gen_Unbounded_Definite_Vectors.Gen_Image;
with SAL.Gen_Unbounded_Definite_Vectors.Gen_Image_Aux;
package WisiToken is

   Partial_Parse : exception; -- a partial parse terminated.

   Syntax_Error : exception; -- no recovery for a syntax error was found

   Parse_Error : exception; -- a non-recoverable non-fatal error was encountered; editing the input can fix the error.

   Fatal_Error : exception; -- Error in code or grammar; editing input cannot fix error.

   Grammar_Error : exception;
   --  Grammar file has bad syntax, or grammar is not consistent (ie
   --  unused tokens, missing productions, invalid actions)

   User_Error : exception; -- other user error (ie command line parameter)

   --  SAL.Programmer_Error : exception; -- a programming convention has been violated

   Validate_Error : exception; -- A validation has failed.

   subtype Positive_Index_Type is SAL.Peek_Type;
   function Trimmed_Image is new SAL.Gen_Trimmed_Image (SAL.Base_Peek_Type);

   type Unknown_State_Index is new Integer range -1 .. Integer'Last;
   subtype State_Index is Unknown_State_Index range 0 .. Unknown_State_Index'Last;
   Unknown_State : constant Unknown_State_Index := -1;
   Accept_State  : constant State_Index         := State_Index'Last;

   function Trimmed_Image is new SAL.Gen_Trimmed_Image (Unknown_State_Index);

   package State_Index_Queues is new SAL.Gen_Unbounded_Definite_Queues (State_Index);
   package State_Index_Arrays is new SAL.Gen_Unbounded_Definite_Vectors
     (Positive, State_Index, Default_Element => State_Index'Last);
   function Trimmed_Image is new SAL.Gen_Trimmed_Image (Integer);
   function Image is new State_Index_Arrays.Gen_Image (Trimmed_Image);

   ----------
   --  Token IDs

   type Token_ID is range 0 .. 2**15 - 1;
   for Token_ID'Size use 16;
   --  0 origin to match elisp array, 16 bits to reduce storage, signed
   --  to match generics. Biggest language will have < 500 token ids; Ada
   --  2020 has 481, Java 19 has 321.

   Invalid_Token_ID : constant Token_ID := Token_ID'Last;

   type String_Access_Constant is access constant String;
   type Token_ID_Array_String is array (Token_ID range <>) of String_Access_Constant;
   type Token_ID_Array_Natural is array (Token_ID range <>) of Natural;

   type Descriptor
     (First_Terminal    : Token_ID;
      Last_Terminal     : Token_ID;
      First_Nonterminal : Token_ID;
      Last_Nonterminal  : Token_ID;
      SOI_ID            : Token_ID; -- start of input
      EOI_ID            : Token_ID; -- end of input
      Accept_ID         : Token_ID)
   is record
      --  Tokens in the range Token_ID'First .. First_Terminal - 1 are
      --  non-reporting (comments, whitespace), and thus are not used in
      --  generating parse tables.
      --
      --  Tokens in the range Last_Terminal + 1 .. Last_Nonterminal are
      --  the nonterminals of a grammar.
      --
      --  SOI_ID is not reported by the lexer, and is not present in
      --  grammar productions; it is hard-coded by the syntax tree
      --  utilities.
      --
      --  Components are discriminants if they can be specified statically.

      Case_Insensitive : Boolean;  -- keywords and names
      New_Line_ID      : Token_ID;

      String_1_ID : Token_ID;
      String_2_ID : Token_ID;
      --  String_1 delimited by '; String_2 by ".
      --
      --  Used by missing quote error recovery. If the language does not
      --  have two kinds of string literals, set one or both of these to
      --  Invalid_Token_ID.

      Image : Token_ID_Array_String (Token_ID'First .. SOI_ID);
      --  User names for tokens.
      --
      --  See wisitoken-bnf-generate_utils.adb Initialize for actual order
      --  of tokens.

      Terminal_Image_Width : Integer;
      Image_Width          : Integer; --  max width of Image

      Last_Lookahead : Token_ID;
      --  LALR generate needs a 'Propagate_ID' lookahead that is distinct
      --  from all terminals. Since lookaheads are Token_ID_Set, we need to
      --  allocate First_Terminal .. Last_Terminal for LR1 generate, and
      --  First_Terminal .. Propagate_ID for LALR generate, so we define
      --  Last_Lookahead. After the LR table is generated, Last_Lookahead is
      --  no longer used.
   end record;
   type Descriptor_Access is access all Descriptor;
   type Descriptor_Access_Constant is access constant Descriptor;

   function Padded_Image (Item : in Token_ID; Desc : in Descriptor) return String;
   --  Return Desc.Image (Item), padded to Terminal_Image_Width (if Item
   --  is a terminal) or to Image_Width.

   function Image (Item : in Token_ID; Desc : in Descriptor) return String;
   --  Return Desc.Image (Item), or "-" for Invalid_Token_ID.

   function Trimmed_Image is new SAL.Gen_Trimmed_Image (Token_ID);

   procedure Put_Tokens (Descriptor : in WisiToken.Descriptor);
   --  Put user readable token list (token_id'first ..
   --  descriptor.last_nonterminal) to Ada.Text_IO.Current_Output

   function Is_Terminal (ID : in Token_ID; Descriptor : in WisiToken.Descriptor) return Boolean
   is (ID in Descriptor.First_Terminal .. Descriptor.Last_Terminal);

   function Is_Nonterminal (ID : in Token_ID; Descriptor : in WisiToken.Descriptor) return Boolean
   is (ID in Descriptor.First_Nonterminal .. Descriptor.Last_Nonterminal);

   function Find_ID (Descriptor : in WisiToken.Descriptor; Name : in String) return Token_ID;
   --  Return index of Name in Descriptor.Image. If not found, raise Programmer_Error.

   type Token_ID_Array is array (Positive range <>) of Token_ID;
   --  Index is not Positive_Index_Type, mostly for historical reasons.

   package Token_ID_Arrays is new SAL.Gen_Unbounded_Definite_Vectors
     (Positive, Token_ID, Default_Element => Invalid_Token_ID);

   function Image is new Token_ID_Arrays.Gen_Image_Aux (Descriptor, Trimmed_Image, Image);
   function Image_No_Assoc (Item : in Token_ID_Arrays.Vector; Aux : in Descriptor) return String
     is (Image (Item, Aux, Association => False));

   function Trimmed_Image is new Token_ID_Arrays.Gen_Image (Trimmed_Image);

   procedure To_Vector (Item : in Token_ID_Array; Vector : in out Token_ID_Arrays.Vector);
   function To_Vector (Item : in Token_ID_Array) return Token_ID_Arrays.Vector;

   function To_Array (Item : in Token_ID_Arrays.Vector) return Token_ID_Array;

   function Shared_Prefix (A, B : in Token_ID_Arrays.Vector) return Natural;
   --  Return last index in A of a prefix shared between A, B; 0 if none.

   type Token_ID_Set is array (Token_ID range <>) of Boolean;
   type Token_ID_Set_Access is access Token_ID_Set;

   function "&" (Left : in Token_ID_Set; Right : in Token_ID) return Token_ID_Set;
   --  Include Left and Right in result.

   function To_Token_ID_Set (First, Last : in Token_ID; Item : in Token_ID_Array) return Token_ID_Set;
   --  First, Last determine size of result.
   --  For each element in Item, set result (element) True.

   procedure To_Set (Item : in Token_ID_Arrays.Vector; Set : out Token_ID_Set);
   --  For each element of Item, set Set (element) True.

   function To_Array (Item : in Token_ID_Set) return Token_ID_Arrays.Vector;

   function Any (Item : in Token_ID_Set) return Boolean;

   function Count (Item : in Token_ID_Set) return Integer;
   --  Count of True elements.

   function Image
     (Item      : in Token_ID_Set;
      Desc      : in Descriptor;
      Max_Count : in Integer := Integer'Last;
      Inverted  : in Boolean := False)
     return String;
   --  For diagnostics; not Ada syntax.

   type Token_Array_Token_Set is array (Token_ID range <>, Token_ID range <>) of Boolean;

   function Slice (Item : in Token_Array_Token_Set; I : in Token_ID) return Token_ID_Set;
   function Any (Item : in Token_Array_Token_Set; I : in Token_ID) return Boolean;
   function Any (Item : in Token_Array_Token_Set) return Boolean;
   procedure Or_Slice (Item : in out Token_Array_Token_Set; I : in Token_ID; Value : in Token_ID_Set);

   procedure Put (Descriptor : in WisiToken.Descriptor; Item : in Token_Array_Token_Set);
   --  Put Item to Ada.Text_IO.Current_Output, using valid Ada aggregate
   --  syntax.

   type Token_Array_Token_ID is array (Token_ID range <>) of Token_ID;

   package Token_Sequence_Arrays is new SAL.Gen_Unbounded_Definite_Vectors
     (Token_ID, Token_ID_Arrays.Vector, Default_Element => Token_ID_Arrays.Empty_Vector);

   ----------
   --  Production IDs; see wisitoken-productions.ads for more

   type Production_ID is record
      LHS : Token_ID := Invalid_Token_ID;
      RHS : Natural  := 0;
      --  Index into the production table.
   end record;

   Invalid_Production_ID : constant Production_ID := (others => <>);

   function Image (Item : in Production_ID) return String;
   --  Ada positional aggregate syntax, for code generation.

   function Image (Item : in Production_ID; Descriptor : in WisiToken.Descriptor) return String;
   --  Nonterm_name_rhs_index, for messages.

   function Trimmed_Image (Item : in Production_ID) return String;
   --  Nonterm.rhs_index, both integers, no leading or trailing space;
   --  for parse table output and diagnostics.

   Prod_ID_Image_Width : constant Integer := 7;
   --  Max width of Trimmed_Image

   function Padded_Image (Item : in Production_ID; Width : in Integer) return String;
   --  Trimmed_Image padded with leading spaces to Width

   package Production_ID_Arrays is new SAL.Gen_Unbounded_Definite_Vectors
     (Positive, Production_ID, Default_Element => Invalid_Production_ID);
   function Image is new Production_ID_Arrays.Gen_Image (Image);
   function Trimmed_Image is new Production_ID_Arrays.Gen_Image (Trimmed_Image);

   type Production_ID_Array is array (Natural range <>) of Production_ID;

   function To_Vector (Item : in Production_ID_Array) return Production_ID_Arrays.Vector;
   function "+" (Item : in Production_ID_Array) return Production_ID_Arrays.Vector renames To_Vector;
   function "+" (Item : in Production_ID) return Production_ID_Arrays.Vector is (To_Vector ((1 => Item)));

   type Token_Array_Production_ID is array (Token_ID range <>) of Production_ID;

   type Recursion_Class is (None, Direct_Left, Other_Left, Other, Other_Right, Direct_Right);
   function Image (Item : in Recursion_Class) return String
     is (case Item is
         when None         => "None",
         when Direct_Left  => "Direct_Left",
         when Other_Left   => "Other_Left",
         when Other        => "Other",
         when Other_Right  => "Other_Right",
         when Direct_Right => "Direct_Right");

   ----------
   --  Tokens

   type Base_Buffer_Pos is new Integer;
   --  Token shift amounts in edited source can be arbitrarily large
   --  positive or negative.

   subtype Zero_Buffer_Pos is Base_Buffer_Pos range 0 .. Base_Buffer_Pos'Last; -- allow 0
   subtype Buffer_Pos is Base_Buffer_Pos range 1 .. Base_Buffer_Pos'Last; -- match Emacs buffer origin.

   type Buffer_Pos_Access is access all Buffer_Pos;

   package Buffer_Pos_Lists is new Ada.Containers.Doubly_Linked_Lists (Buffer_Pos);

   function Trimmed_Image is new SAL.Gen_Trimmed_Image (Base_Buffer_Pos);

   type Buffer_Region is record
      First : Buffer_Pos;
      Last  : Base_Buffer_Pos; --  allow representing null range.
   end record;

   Invalid_Buffer_Pos : constant Buffer_Pos    := Buffer_Pos'Last;
   Null_Buffer_Region : constant Buffer_Region := (Buffer_Pos'Last, Buffer_Pos'First);

   function Length (Region : in Buffer_Region) return Natural is
     ((if Region.Last >= Region.First
       then Natural (Region.Last - Region.First + 1)
       else 0));

   function Contains (Region : in Buffer_Region; Pos : in Base_Buffer_Pos) return Boolean
   is (Region.First <= Pos and Pos <= Region.Last);

   type Boundary is (Inclusive, Exclusive);

   function Contains
     (Outer, Inner   : in Buffer_Region;
      First_Boundary : in Boundary := Inclusive;
      Last_Boundary  : in Boundary := Inclusive)
     return Boolean;
   --  True if Outer entirely contains Inner, according to Boundaries.
   --
   --  Note that any non-null region contains Null_Buffer_Region.

   function Overlaps (A, B : in Buffer_Region) return Boolean;
   --  True if A and B have some positions in common.

   function Image (Item : in Buffer_Region) return String;

   function "and" (Left, Right : in Buffer_Region) return Buffer_Region;
   --  Return region enclosing both Left and Right.

   function "+" (Left : in Buffer_Region; Right : in Base_Buffer_Pos) return Buffer_Region
     is (Left.First + Right, Left.Last + Right);

   function Adjust (Left : in Buffer_Region; Delta_First : in Integer; Delta_Last : in Integer) return Buffer_Region
   is (Buffer_Pos (Integer'Max (1, Integer (Left.First) + Delta_First)),
       Base_Buffer_Pos (Integer (Left.Last) + Delta_Last));

   type Base_Line_Number_Type is new Integer; -- for delta line numbers.
   subtype Line_Number_Type is Base_Line_Number_Type range 1 .. Base_Line_Number_Type'Last - 1;
   --  Match Emacs buffer line numbers.

   Invalid_Line_Number : constant Base_Line_Number_Type := Base_Line_Number_Type'Last;

   function Trimmed_Image (Item : in Base_Line_Number_Type) return String;
   --  '-' if Invalid_Line_Number

   type Line_Region is record
      First, Last : Line_Number_Type;
   end record;

   Null_Line_Region : constant Line_Region := (Line_Number_Type'Last, Line_Number_Type'First);

   function New_Line_Count (Region : in Line_Region) return Base_Line_Number_Type
   is ((if Region.Last >= Region.First
        then Region.Last - Region.First
        else 0));

   function Contains_New_Line (Region : in Line_Region) return Boolean
   is (Region.Last > Region.First);

   function Image (Item : in Line_Region) return String;
   --  Ada positional aggregate.

   function "+" (Left : in Line_Region; Right : in Base_Line_Number_Type) return Line_Region;

   function Contains (Region : in Line_Region; Pos : in Base_Line_Number_Type) return Boolean
   is (Region.First <= Pos and Pos <= Region.Last);

   type Insert_Location is (After_Prev, Between, Before_Next);

   type Base_Identifier_Index is range 0 .. Integer'Last;
   subtype Identifier_Index is Base_Identifier_Index range 1 .. Base_Identifier_Index'Last;
   --  For virtual identifiers created during syntax tree rewrite.

   Invalid_Identifier_Index : constant Base_Identifier_Index := Base_Identifier_Index'First;

   function Trimmed_Image is new SAL.Gen_Trimmed_Image (Base_Identifier_Index);

   ----------
   --  Trace, debug

   Trace_Parse : Integer  := 0;
   --  If Trace_Parse > 0, Parse prints messages helpful for debugging
   --  the grammar and/or the parser; higher value prints more.
   --
   --  Trace_Parse levels; output info if Trace_Parse > than:
   --
   Outline     : constant := 0; -- spawn/terminate parallel parsers, error recovery enter/exit
   Detail      : constant := 1; -- add each parser cycle
   Extra       : constant := 2; -- add pending semantic state operations
   Extreme     : constant := 3; -- add ?

   Trace_McKenzie : Integer  := 0;
   --  If Trace_McKenzie > 0, Parse prints messages helpful for debugging
   --  error recovery.
   --
   --  Outline - error recovery enter/exit
   --  Detail  - add each error recovery configuration
   --  Extra   - add error recovery parse actions
   --
   --  See also wisitoken-parse-lr.ads Set_McKenzie_Options.

   Trace_Lexer : Integer := 0;

   Trace_Incremental_Parse : Integer := 0;

   Trace_Action : Integer := 0;
   --  Output during Execute_Action

   Trace_Tests : Integer := 0;
   --  Output during unit tests

   Trace_Generate                  : Integer := 0;
   Trace_Generate_EBNF             : Integer := 0;
   Trace_Generate_Table            : Integer := 0;
   Trace_Generate_Conflicts        : Integer := 0;
   Trace_Generate_Minimal_Complete : Integer := 0;
   --  Output during grammar generation.

   Trace_Time : Boolean := False;
   --  Output execution time for various things.

   Trace_Memory : Integer := 0;

   Trace_Parse_No_State_Numbers : Boolean := False;
   --  For test_lr1_parallel.adb

   Debug_Mode : Boolean := False;
   --  If True, output stack traces, propagate exceptions to top level.
   --  Otherwise, be robust to errors, so user does not notice them.

   Test_McKenzie_Recover : Boolean := False;
   --  True when running test_mckenzie_recover.adb; error recover stores
   --  extra info for test.

   procedure Enable_Trace (Config : in String);
   --  Config has the format:
   --
   --  name=value ...
   --
   --  where "name" is the suffix of on of the Trace_* variables above
   --  (or an abbreviation; see body), and "value" is an integer.
   --
   --  For Boolean variables, value > 0 is True, 0 is False.
   --
   --  In addition, the name "debug" sets Debug_Mode.

   procedure Enable_Trace_Help;
   --  Output to Text_IO.Current_Error a message describing available
   --  options for Enable_Trace.

   type Trace is abstract tagged limited null record;
   type Trace_Access is access all Trace'Class;
   --  Output for tests/debugging.

   procedure Set_Prefix (Trace : in out WisiToken.Trace; Prefix : in String) is abstract;
   --  Prepend Prefix to all subsequent messages. Usefull for adding
   --  comment syntax.

   procedure Put (Trace : in out WisiToken.Trace; Item : in String; Prefix : in Boolean := True) is abstract;
   --  Put Item to the Trace display. If Prefix is True, prepend the stored prefix.

   procedure Put_Line (Trace : in out WisiToken.Trace; Item : in String) is abstract;
   --  Put Item to the Trace display, preceded by the stored prefix, followed by a newline.

   procedure New_Line (Trace : in out WisiToken.Trace) is abstract;
   --  Put a newline to the Trace display (no prefix).

   procedure Put_Clock (Trace : in out WisiToken.Trace; Label : in String) is abstract;
   --  Put Ada.Calendar.Clock to Trace, preceded by stored prefix.

   Memory_Baseline : GNATCOLL.Memory.Byte_Count := 0;
   --  This is only the Current value; trying to save the high water mark
   --  for later subtraction does not make sense.

   procedure Report_Memory (Trace : in out WisiToken.Trace'Class; Prefix : in Boolean);
   --  Output data from GNATCOLL.Memory, relative to Memory_Baseline.

   ----------
   --  Misc

   type Associativity is (Left, Right, None);

   type Base_Precedence_ID is range 0 .. 255;
   subtype Precedence_ID is Base_Precedence_ID range 1 .. 255;
   No_Precedence : constant Base_Precedence_ID := 0;

   function Trimmed_Image is new SAL.Gen_Trimmed_Image (Base_Precedence_ID);

   type Precedence_List_ID is range 1 .. 255;

   package Precedence_Maps is new Ada.Containers.Indefinite_Hashed_Maps
     (Key_Type        => String,
      Element_Type    => Precedence_ID,
      Hash            => Ada.Strings.Hash_Case_Insensitive,
      Equivalent_Keys => Ada.Strings.Equal_Case_Insensitive);

   package Precedence_Inverse_Maps is new Ada.Containers.Vectors
     (Index_Type   => Precedence_ID,
      Element_Type => Ada.Strings.Unbounded.Unbounded_String,
      "="          => Ada.Strings.Unbounded."=");

   package Precedence_Lists is new Ada.Containers.Doubly_Linked_Lists (Precedence_ID);

   package Precedence_Lists_Arrays is new Ada.Containers.Vectors
     (Precedence_List_ID, Precedence_Lists.List, Precedence_Lists."=");
   --  Actual precedence relation is given by order of two Precedence_IDs
   --  in a Precedence_List; earlier ID has higher precedence.

   procedure Put
     (Lists : in Precedence_Lists_Arrays.Vector;
      Map   : in Precedence_Maps.Map);
   --  Put Lists, Map to Ada.Text_IO.Current_Ouput, for debugging.

   type Precedence_Compare_Result is (Left, Right, None);

   function Compare
     (Left        : in Precedence_ID;
      Right       : in Precedence_ID;
      Precedences : in Precedence_Lists_Arrays.Vector)
     return Precedence_Compare_Result;

   type Cache_Version is mod 2**16;

   type Boolean_Access is access all Boolean;

   function "+" (Item : in String) return Ada.Strings.Unbounded.Unbounded_String
     renames Ada.Strings.Unbounded.To_Unbounded_String;

   function "-" (Item : in Ada.Strings.Unbounded.Unbounded_String) return String
     renames Ada.Strings.Unbounded.To_String;

   function Trimmed_Image is new SAL.Gen_Trimmed_Image (Ada.Containers.Count_Type);

   function Error_Message
     (File_Name : in String;
      Line      : in Base_Line_Number_Type;
      Column    : in Ada.Text_IO.Count;
      Message   : in String)
     return String;
   --  Return Gnu-formatted error message. Column parameter is origin 0
   --  (WisiToken and Emacs standard); in formatted message it is origin
   --  1 (Gnu coding standards [gnu_coding])

   type Names_Array is array (Integer range <>) of String_Access_Constant;
   type Names_Array_Access is access Names_Array;
   type Names_Array_Array is array (WisiToken.Token_ID range <>) of Names_Array_Access;
   type Names_Array_Array_Access is access Names_Array_Array;

   function Next_Value
     (Stream : not null access Ada.Streams.Root_Stream_Type'Class;
      Delims : in              Ada.Strings.Maps.Character_Set)
     return String;
   --  Return a string from Stream, ending at a member of Delims or EOI
   --  (ending delim is read from the stream but not included in result).
   --  Leading Delims are skipped.

   type Recursion_Strategy is (None, Partial, Full);

end WisiToken;