summaryrefslogtreecommitdiff
path: root/src/packrat-traits.ads
blob: d14b2fd69ac14d58ebafd0611f1e00aa1cbd54d3 (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


with

    Packrat.Tokens;


generic

    type Label_Enum is (<>);
    type Element_Type is private;
    type Element_Array is array (Positive range <>) of Element_Type;

    with function "<" (Left, Right : in Element_Type) return Boolean is <>;

package Packrat.Traits is


    package Tokens is new Packrat.Tokens (Label_Enum, Element_Type, Element_Array);


end Packrat.Traits;