1998-06-25 06:14:07 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
2011-07-27 07:17:02 -07:00
|
|
|
(* OCaml *)
|
1998-06-25 06:14:07 -07:00
|
|
|
(* *)
|
|
|
|
(* Jerome Vouillon, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
|
|
|
(* Copyright 1997 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. *)
|
1998-06-25 06:14:07 -07:00
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* Inclusion checks for the class language *)
|
|
|
|
|
|
|
|
open Types
|
|
|
|
open Ctype
|
2000-03-06 14:12:09 -08:00
|
|
|
open Format
|
1998-06-25 06:14:07 -07:00
|
|
|
|
|
|
|
val class_types:
|
|
|
|
Env.t -> class_type -> class_type -> class_match_failure list
|
|
|
|
val class_type_declarations:
|
2012-05-30 07:52:37 -07:00
|
|
|
Env.t -> class_type_declaration -> class_type_declaration ->
|
1998-06-25 06:14:07 -07:00
|
|
|
class_match_failure list
|
|
|
|
val class_declarations:
|
|
|
|
Env.t -> class_declaration -> class_declaration ->
|
|
|
|
class_match_failure list
|
|
|
|
|
2000-03-06 14:12:09 -08:00
|
|
|
val report_error: formatter -> class_match_failure list -> unit
|