package ocaml-base-compiler

  1. Overview
  2. Docs
module Name = Odoc_name
type exception_alias = {
  1. ea_name : Name.t;
  2. mutable ea_ex : t_exception option;
}
and t_exception = {
  1. ex_name : Name.t;
  2. mutable ex_info : Odoc_types.info option;
  3. ex_args : Odoc_type.constructor_args;
  4. ex_ret : Types.type_expr option;
  5. ex_alias : exception_alias option;
  6. mutable ex_loc : Odoc_types.location;
  7. mutable ex_code : string option;
}