]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/ocaml/ocaml/contrib/typing/includeclass.mli
Update
[l4.git] / l4 / pkg / ocaml / ocaml / contrib / typing / includeclass.mli
1 (***********************************************************************)
2 (*                                                                     *)
3 (*                           Objective Caml                            *)
4 (*                                                                     *)
5 (*          Jerome Vouillon, projet Cristal, INRIA Rocquencourt        *)
6 (*                                                                     *)
7 (*  Copyright 1997 Institut National de Recherche en Informatique et   *)
8 (*  en Automatique.  All rights reserved.  This file is distributed    *)
9 (*  under the terms of the Q Public License version 1.0.               *)
10 (*                                                                     *)
11 (***********************************************************************)
12
13 (* $Id: includeclass.mli 2908 2000-03-06 22:12:09Z weis $ *)
14
15 (* Inclusion checks for the class language *)
16
17 open Types
18 open Typedtree
19 open Ctype
20 open Format
21
22 val class_types:
23         Env.t -> class_type -> class_type -> class_match_failure list
24 val class_type_declarations:
25         Env.t -> cltype_declaration -> cltype_declaration ->
26         class_match_failure list
27 val class_declarations:
28         Env.t -> class_declaration -> class_declaration ->
29         class_match_failure list
30
31 val report_error: formatter -> class_match_failure list -> unit