Sourcetype constant =
| Const_int of int
| Const_char of char
| Const_string of string * Location.t * string option
| Const_float of string
| Const_int32 of int32
| Const_int64 of int64
| Const_nativeint of nativeint
Sourcetype rec_flag =
| Nonrecursive
| Recursive
Sourcetype direction_flag =
| Upto
| Downto
Sourcetype private_flag =
| Private
| Public
Sourcetype mutable_flag =
| Immutable
| Mutable
Sourcetype virtual_flag =
| Virtual
| Concrete
Sourcetype override_flag =
| Override
| Fresh
Sourcetype closed_flag =
| Closed
| Open
Sourcetype arg_label =
| Nolabel
| Labelled of string
| Optional of string
Sourcetype variance =
| Covariant
| Contravariant
| Invariant