blob: dfc8decf82ed514a986214965e8a4c976e644e72 (
plain)
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
|
with
Ada.Characters.Latin_1,
Ada.Strings.Maps,
Ada.Exceptions,
Packrat.Lexer.Debug,
Packrat.Graphs,
Packrat.Util;
package body Ratnest.Tests is
package Latin renames Ada.Characters.Latin_1;
package Strmaps renames Ada.Strings.Maps;
package Except renames Ada.Exceptions;
package PE renames Packrat.Errors;
package PU renames Packrat.Util;
package body Errors is separate;
package body Tokens is separate;
package body Lexer is separate;
package body Graphs is separate;
package body Util is separate;
end Ratnest.Tests;
|