module Benl_types:Ben-specific basic datatypes.sig
..end
typefield =
string
typeregexp =
string * Pcre.regexp
type
comparison =
| |
Le |
| |
Lt |
| |
Eq |
| |
Gt |
| |
Ge |
type
expr =
| |
Etrue |
|||
| |
Efalse |
|||
| |
EMatch of |
|||
| |
ENot of |
|||
| |
EAnd of |
|||
| |
EOr of |
|||
| |
ESource |
|||
| |
EList of |
|||
| |
EString of |
|||
| |
ERegexp of |
|||
| |
EVersion of |
|||
| |
EDep of |
(* | The abstract syntax tree of configuration items. | *) |
typeconfig =
(string * expr) list
expr
.