1995-08-09 08:06:35 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Objective Caml *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* *)
|
|
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
1999-11-17 10:59:06 -08:00
|
|
|
(* en Automatique. All rights reserved. This file is distributed *)
|
|
|
|
(* under the terms of the Q Public License version 1.0. *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
(* Inclusion checks for the core language *)
|
|
|
|
|
1996-09-23 04:33:27 -07:00
|
|
|
open Types
|
1995-05-04 03:15:53 -07:00
|
|
|
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
|
1998-06-24 12:22:26 -07:00
|
|
|
(*
|
1997-03-09 16:23:13 -08:00
|
|
|
val class_types:
|
1997-05-19 08:42:21 -07:00
|
|
|
Env.t -> class_type -> class_type -> bool
|
1998-06-24 12:22:26 -07:00
|
|
|
*)
|