package override

  1. Overview
  2. Docs
type constant = Asttypes.constant =
  1. | Const_int of int
  2. | Const_char of char
  3. | Const_string of string * string option
  4. | Const_float of string
  5. | Const_int32 of int32
  6. | Const_int64 of int64
  7. | Const_nativeint of nativeint
val pp_constant : Ppx_show_runtime.Format.formatter -> constant -> unit
val show_constant : constant -> string
type rec_flag = Asttypes.rec_flag =
  1. | Nonrecursive
  2. | Recursive
val pp_rec_flag : Ppx_show_runtime.Format.formatter -> rec_flag -> unit
val show_rec_flag : rec_flag -> string
type direction_flag = Asttypes.direction_flag =
  1. | Upto
  2. | Downto
val pp_direction_flag : Ppx_show_runtime.Format.formatter -> direction_flag -> unit
val show_direction_flag : direction_flag -> string
type private_flag = Asttypes.private_flag =
  1. | Private
  2. | Public
val pp_private_flag : Ppx_show_runtime.Format.formatter -> private_flag -> unit
val show_private_flag : private_flag -> string
type mutable_flag = Asttypes.mutable_flag =
  1. | Immutable
  2. | Mutable
val pp_mutable_flag : Ppx_show_runtime.Format.formatter -> mutable_flag -> unit
val show_mutable_flag : mutable_flag -> string
type virtual_flag = Asttypes.virtual_flag =
  1. | Virtual
  2. | Concrete
val pp_virtual_flag : Ppx_show_runtime.Format.formatter -> virtual_flag -> unit
val show_virtual_flag : virtual_flag -> string
type override_flag = Asttypes.override_flag =
  1. | Override
  2. | Fresh
val pp_override_flag : Ppx_show_runtime.Format.formatter -> override_flag -> unit
val show_override_flag : override_flag -> string
type closed_flag = Asttypes.closed_flag =
  1. | Closed
  2. | Open
val pp_closed_flag : Ppx_show_runtime.Format.formatter -> closed_flag -> unit
val show_closed_flag : closed_flag -> string
type label = string
val pp_label : Ppx_show_runtime.Format.formatter -> label -> unit
val show_label : label -> string
type arg_label = Asttypes.arg_label =
  1. | Nolabel
  2. | Labelled of string
  3. | Optional of string
val pp_arg_label : Ppx_show_runtime.Format.formatter -> arg_label -> unit
val show_arg_label : arg_label -> string
type 'a loc = 'a Location.loc = {
  1. txt : 'a;
  2. loc : Location.t;
}
val pp_loc : (Ppx_show_runtime.Format.formatter -> 'a -> unit) -> Ppx_show_runtime.Format.formatter -> 'a loc -> unit
val show_loc : (Ppx_show_runtime.Format.formatter -> 'a -> unit) -> 'a loc -> string
type variance = Asttypes.variance =
  1. | Covariant
  2. | Contravariant
  3. | Invariant
val pp_variance : Ppx_show_runtime.Format.formatter -> variance -> unit
val show_variance : variance -> string