1995-08-09 08:06:35 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Caml Special Light *)
|
|
|
|
(* *)
|
|
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
|
|
|
(* Copyright 1995 Institut National de Recherche en Informatique et *)
|
|
|
|
(* Automatique. Distributed only by permission. *)
|
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
(* Inclusion checks for the core language *)
|
|
|
|
|
|
|
|
open Typedtree
|
|
|
|
|
1995-10-23 09:59:41 -07:00
|
|
|
exception Dont_match
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
val value_descriptions:
|
1995-10-23 09:59:41 -07:00
|
|
|
Env.t -> value_description -> value_description -> module_coercion
|
1995-05-04 03:15:53 -07:00
|
|
|
val type_declarations:
|
|
|
|
Env.t -> Ident.t -> type_declaration -> type_declaration -> bool
|
|
|
|
val exception_declarations:
|
|
|
|
Env.t -> exception_declaration -> exception_declaration -> bool
|
1996-04-22 04:15:41 -07:00
|
|
|
val class_type:
|
|
|
|
Env.t -> class_type -> class_type -> bool
|