-
Notifications
You must be signed in to change notification settings - Fork 76
/
typeclass.mli
142 lines (126 loc) · 4.87 KB
/
typeclass.mli
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
(**************************************************************************)
(* *)
(* OCaml *)
(* *)
(* Jerome Vouillon, projet Cristal, INRIA Rocquencourt *)
(* *)
(* Copyright 1996 Institut National de Recherche en Informatique et *)
(* en Automatique. *)
(* *)
(* All rights reserved. This file is distributed under the terms of *)
(* the GNU Lesser General Public License version 2.1, with the *)
(* special exception on linking described in the file LICENSE. *)
(* *)
(**************************************************************************)
open Asttypes
open Types
open Format
type 'a class_info = {
cls_id : Ident.t;
cls_id_loc : string loc;
cls_decl : class_declaration;
cls_ty_id : Ident.t;
cls_ty_decl : class_type_declaration;
cls_obj_id : Ident.t;
cls_obj_abbr : type_declaration;
cls_abbr : type_declaration;
cls_arity : int;
cls_pub_methods : string list;
cls_info : 'a;
}
type class_type_info = {
clsty_ty_id : Ident.t;
clsty_id_loc : string loc;
clsty_ty_decl : class_type_declaration;
clsty_obj_id : Ident.t;
clsty_obj_abbr : type_declaration;
clsty_abbr : type_declaration;
clsty_info : Typedtree.class_type_declaration;
}
val class_declarations:
Env.t -> Parsetree.class_declaration list ->
Typedtree.class_declaration class_info list * Env.t
(*
and class_declaration =
(class_expr, Types.class_declaration) class_infos
*)
val class_descriptions:
Env.t -> Parsetree.class_description list ->
Typedtree.class_description class_info list * Env.t
(*
and class_description =
(class_type, unit) class_infos
*)
val class_type_declarations:
Env.t -> Parsetree.class_description list -> class_type_info list * Env.t
(*
and class_type_declaration =
(class_type, Types.class_type_declaration) class_infos
*)
val approx_class_declarations:
Env.t -> Parsetree.class_description list -> class_type_info list * Env.t
(*
val type_classes :
bool ->
('a -> Types.type_expr) ->
(Env.t -> 'a -> 'b * Types.class_type) ->
Env.t ->
'a Parsetree.class_infos list ->
( Ident.t * Types.class_declaration *
Ident.t * Types.class_type_declaration *
Ident.t * Types.type_declaration *
Ident.t * Types.type_declaration *
int * string list * 'b * 'b Typedtree.class_infos)
list * Env.t
*)
type kind =
| Object
| Class
| Class_type
type error =
| Unconsistent_constraint of Errortrace.unification_error
| Field_type_mismatch of string * string * Errortrace.unification_error
| Unexpected_field of type_expr * string
| Structure_expected of class_type
| Cannot_apply of class_type
| Apply_wrong_label of arg_label
| Pattern_type_clash of type_expr
| Repeated_parameter
| Unbound_class_2 of Longident.t
| Unbound_class_type_2 of Longident.t
| Abbrev_type_clash of type_expr * type_expr * type_expr
| Constructor_type_mismatch of string * Errortrace.unification_error
| Virtual_class of kind * string list * string list
| Undeclared_methods of kind * string list
| Parameter_arity_mismatch of Longident.t * int * int
| Parameter_mismatch of Errortrace.unification_error
| Bad_parameters of Ident.t * type_expr list * type_expr list
| Bad_class_type_parameters of Ident.t * type_expr list * type_expr list
| Class_match_failure of Ctype.class_match_failure list
| Unbound_val of string
| Unbound_type_var of (formatter -> unit) * Ctype.closed_class_failure
| Non_generalizable_class of
{ id : Ident.t
; clty : Types.class_declaration
; nongen_vars : type_expr list
}
| Cannot_coerce_self of type_expr
| Non_collapsable_conjunction of
Ident.t * Types.class_declaration * Errortrace.unification_error
| Self_clash of Errortrace.unification_error
| Mutability_mismatch of string * Asttypes.mutable_flag
| No_overriding of string * string
| Duplicate of string * string
| Closing_self_type of class_signature
| Polymorphic_class_parameter
| Non_value_binding of string * Jkind.Violation.t
| Non_value_let_binding of string * Jkind.sort
| Nonoptional_call_pos_label of string
exception Error of Location.t * Env.t * error
exception Error_forward of Location.error
val report_error : Env.t -> formatter -> error -> unit
(* Forward decl filled in by Typemod.type_open_descr *)
val type_open_descr :
(?used_slot:bool ref ->
Env.t -> Parsetree.open_description -> Typedtree.open_description * Env.t)
ref