Module Ocaml_typing.IncludemodSource

Sourcetype mark =
  1. | Mark_both
    (*

    Mark definitions used from both arguments

    *)
  2. | Mark_positive
    (*

    Mark definitions used from the positive (first) argument

    *)
  3. | Mark_negative
    (*

    Mark definitions used from the negative (second) argument

    *)
  4. | Mark_neither
    (*

    Do not mark definitions used from either argument

    *)

Type describing which arguments of an inclusion to consider as used for the usage warnings. Mark_both is the default.

Sourcemodule Error : sig ... end
Sourcetype explanation = Env.t * Error.all
Sourcetype field_kind =
  1. | Field_value
  2. | Field_type
  3. | Field_exception
  4. | Field_typext
  5. | Field_module
  6. | Field_modtype
  7. | Field_class
  8. | Field_classtype
Sourcetype field_desc = {
  1. name : string;
  2. kind : field_kind;
}
Sourceval kind_of_field_desc : field_desc -> string
Sourceval field_desc : field_kind -> Ident.t -> field_desc
Sourcemodule FieldMap : Map.S with type key = field_desc

Map indexed by both field types and names. This avoids name clashes between different sorts of fields such as values and types.

Sourceval is_runtime_component : Types.signature_item -> bool
Sourceval strengthened_module_decl : loc:Ocaml_parsing.Location.t -> aliasable:bool -> Env.t -> mark:mark -> Types.module_declaration -> Path.t -> Types.module_declaration -> Typedtree.module_coercion
Sourceval check_modtype_inclusion : loc:Ocaml_parsing.Location.t -> Env.t -> Types.module_type -> Path.t -> Types.module_type -> explanation option

check_modtype_inclusion ~loc env mty1 path1 mty2 checks that the functor application F(M) is well typed, where mty2 is the type of the argument of F and path1/mty1 is the path/unstrenghened type of M.

Sourceval check_modtype_equiv : loc:Ocaml_parsing.Location.t -> Env.t -> Ident.t -> Types.module_type -> Types.module_type -> unit
Sourceval compunit : Env.t -> mark:mark -> string -> Types.signature -> string -> Types.signature -> Shape.t -> Typedtree.module_coercion * Shape.t
Sourceval type_declarations : loc:Ocaml_parsing.Location.t -> Env.t -> mark:mark -> Ident.t -> Types.type_declaration -> Types.type_declaration -> unit
Sourceval print_coercion : Format.formatter -> Typedtree.module_coercion -> unit
Sourcetype pos =
  1. | Module of Ident.t
  2. | Modtype of Ident.t
  3. | Arg of Types.functor_parameter
  4. | Body of Types.functor_parameter
Sourceexception Error of explanation
Sourceexception Apply_error of {
  1. loc : Ocaml_parsing.Location.t;
  2. env : Env.t;
  3. lid_app : Ocaml_parsing.Longident.t option;
  4. mty_f : Types.module_type;
  5. args : (Error.functor_arg_descr * Types.module_type) list;
}
Sourceval expand_module_alias : strengthen:bool -> Env.t -> Path.t -> Types.module_type
Sourcemodule Functor_inclusion_diff : sig ... end
Sourcemodule Functor_app_diff : sig ... end