Module Ast_411.AsttypesSource

Sourcetype constant =
  1. | Const_int of int
  2. | Const_char of char
  3. | Const_string of string * Location.t * string option
  4. | Const_float of string
  5. | Const_int32 of int32
  6. | Const_int64 of int64
  7. | Const_nativeint of nativeint
Sourcetype rec_flag =
  1. | Nonrecursive
  2. | Recursive
Sourcetype direction_flag =
  1. | Upto
  2. | Downto
Sourcetype private_flag =
  1. | Private
  2. | Public
Sourcetype mutable_flag =
  1. | Immutable
  2. | Mutable
Sourcetype virtual_flag =
  1. | Virtual
  2. | Concrete
Sourcetype override_flag =
  1. | Override
  2. | Fresh
Sourcetype closed_flag =
  1. | Closed
  2. | Open
Sourcetype label = string
Sourcetype arg_label =
  1. | Nolabel
  2. | Labelled of string
  3. | Optional of string
Sourcetype 'a loc = 'a Location.loc = {
  1. txt : 'a;
  2. loc : Location.t;
}
Sourcetype variance =
  1. | Covariant
  2. | Contravariant
  3. | Invariant