Source file uReStrParserType.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 1 "Camomile/internal/uReStrParserType.ml"
type set_notation =
[ `Set of USet.t
| `Property of string
| `Intr of set_notation * set_notation
| `Union of set_notation * set_notation
| `Diff of set_notation * set_notation
| `Compl of set_notation ]
type tree =
[ `Alt of tree * tree
| `Seq of tree * tree
| `Rep of tree
| `Repn of tree * int * int option
| `After of tree
| `Before of tree
| `Epsilon
| `Group of tree
| `OneChar
| `String of UChar.t list
| `Set of USet.t
| `SetNotation of set_notation
| `BoS
| `EoS ]