20 lines
668 B
OCaml
20 lines
668 B
OCaml
|
(* Inclusion checks for the module language *)
|
||
|
|
||
|
open Typedtree
|
||
|
|
||
|
val modtypes: Env.t -> module_type -> module_type -> module_coercion
|
||
|
val signatures: Env.t -> signature -> signature -> module_coercion
|
||
|
|
||
|
type error =
|
||
|
Missing_field of Ident.t
|
||
|
| Value_descriptions of Ident.t * value_description * value_description
|
||
|
| Type_declarations of Ident.t * type_declaration * type_declaration
|
||
|
| Exception_declarations of
|
||
|
Ident.t * exception_declaration * exception_declaration
|
||
|
| Module_types of module_type * module_type
|
||
|
| Modtype_infos of Ident.t * modtype_declaration * modtype_declaration
|
||
|
|
||
|
exception Error of error list
|
||
|
|
||
|
val report_error: error list -> unit
|