-
Notifications
You must be signed in to change notification settings - Fork 94
/
lang.ml
576 lines (483 loc) · 14 KB
/
lang.ml
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
(*
* Copyright (c) 2014 Leo White <lpw25@cl.cam.ac.uk>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*)
open Paths
(** {3 Modules} *)
module rec Module : sig
type decl =
| Alias of (Path.Module.t * ModuleType.simple_expansion option)
| ModuleType of ModuleType.expr
type t = {
id : Identifier.Module.t;
source_loc : Identifier.SourceLocation.t option;
(** Identifier.SourceLocation might not be set when the module is artificially constructed from a functor argument. *)
doc : Comment.docs;
type_ : decl;
canonical : Path.Module.t option;
hidden : bool;
}
module Equation : sig
type t = decl
end
end =
Module
and FunctorParameter : sig
type parameter = {
id : Identifier.FunctorParameter.t;
expr : ModuleType.expr;
}
type t = Unit | Named of parameter
end =
FunctorParameter
(** {3 Modules Types} *)
and ModuleType : sig
type substitution =
| ModuleEq of Fragment.Module.t * Module.Equation.t
| ModuleTypeEq of Fragment.ModuleType.t * ModuleType.expr
| TypeEq of Fragment.Type.t * TypeDecl.Equation.t
| ModuleSubst of Fragment.Module.t * Path.Module.t
| ModuleTypeSubst of Fragment.ModuleType.t * ModuleType.expr
| TypeSubst of Fragment.Type.t * TypeDecl.Equation.t
type type_of_desc =
| ModPath of Path.Module.t
| StructInclude of Path.Module.t
type simple_expansion =
| Signature of Signature.t
| Functor of FunctorParameter.t * simple_expansion
type typeof_t = {
t_desc : type_of_desc;
t_original_path : Path.Module.t;
t_expansion : simple_expansion option;
}
module U : sig
(* Unexpanded (aside from Signature, obviously) *)
type expr =
| Path of Path.ModuleType.t
| Signature of Signature.t
| With of substitution list * expr
| TypeOf of type_of_desc * Path.Module.t
end
type path_t = {
p_expansion : simple_expansion option;
p_path : Path.ModuleType.t;
}
type with_t = {
w_substitutions : substitution list;
w_expansion : simple_expansion option;
w_expr : U.expr;
}
type expr =
| Path of path_t
| Signature of Signature.t
| Functor of FunctorParameter.t * expr
| With of with_t
| TypeOf of typeof_t
type t = {
id : Identifier.ModuleType.t;
source_loc : Identifier.SourceLocation.t option;
(** Can be [None] for module types created by a type substitution. *)
doc : Comment.docs;
canonical : Path.ModuleType.t option;
expr : expr option;
}
end =
ModuleType
and ModuleSubstitution : sig
type t = {
id : Identifier.Module.t;
doc : Comment.docs;
manifest : Path.Module.t;
}
end =
ModuleSubstitution
and ModuleTypeSubstitution : sig
type t = {
id : Identifier.ModuleType.t;
doc : Comment.docs;
manifest : ModuleType.expr;
}
end =
ModuleTypeSubstitution
(** {3 Signatures} *)
and Signature : sig
type recursive = Ordinary | And | Nonrec | Rec
type item =
| Module of recursive * Module.t
| ModuleType of ModuleType.t
| ModuleSubstitution of ModuleSubstitution.t
| ModuleTypeSubstitution of ModuleTypeSubstitution.t
| Open of Open.t
| Type of recursive * TypeDecl.t
| TypeSubstitution of TypeDecl.t
| TypExt of Extension.t
| Exception of Exception.t
| Value of Value.t
| Class of recursive * Class.t
| ClassType of recursive * ClassType.t
| Include of Include.t
| Comment of Comment.docs_or_stop
type removed_item =
| RModule of Names.ModuleName.t * Path.Module.t
| RType of Names.TypeName.t * TypeExpr.t * TypeDecl.Equation.t
| RModuleType of Names.ModuleTypeName.t * ModuleType.expr
type t = {
items : item list;
compiled : bool;
removed : removed_item list;
doc : Comment.docs; (** The top comment. *)
}
end =
Signature
and Open : sig
type t = { expansion : Signature.t; doc : Comment.docs }
end =
Open
(** {3 Includes} *)
and Include : sig
type shadowed = {
s_modules : (string * Names.ModuleName.t) list;
s_module_types : (string * Names.ModuleTypeName.t) list;
s_values : (string * Names.ValueName.t) list;
s_types : (string * Names.TypeName.t) list;
s_classes : (string * Names.TypeName.t) list;
s_class_types : (string * Names.TypeName.t) list;
}
type expansion = { shadowed : shadowed; content : Signature.t }
(* Explicitly unexpanded decl *)
type decl = Alias of Path.Module.t | ModuleType of ModuleType.U.expr
type t = {
loc : Location_.span;
parent : Identifier.Signature.t;
strengthened : Path.Module.t option;
doc : Comment.docs;
status : [ `Inline | `Closed | `Open | `Default ];
decl : decl;
expansion : expansion;
}
end =
Include
(** {3 Type Declarations} *)
and TypeDecl : sig
module Field : sig
type t = {
id : Identifier.Field.t;
doc : Comment.docs;
mutable_ : bool;
type_ : TypeExpr.t;
}
end
module Constructor : sig
type argument = Tuple of TypeExpr.t list | Record of Field.t list
type t = {
id : Identifier.Constructor.t;
doc : Comment.docs;
args : argument;
res : TypeExpr.t option;
}
end
module Representation : sig
type t =
| Variant of Constructor.t list
| Record of Field.t list
| Extensible
end
type variance = Pos | Neg
type param_desc = Any | Var of string
type param = {
desc : param_desc;
variance : variance option;
injectivity : bool;
}
module Equation : sig
type t = {
params : param list;
private_ : bool;
manifest : TypeExpr.t option;
constraints : (TypeExpr.t * TypeExpr.t) list;
}
end
type t = {
id : Identifier.Type.t;
source_loc : Identifier.SourceLocation.t option;
doc : Comment.docs;
canonical : Path.Type.t option;
equation : Equation.t;
representation : Representation.t option;
}
end =
TypeDecl
(** {3 Type extensions} *)
and Extension : sig
module Constructor : sig
type t = {
id : Identifier.Extension.t;
source_loc : Identifier.SourceLocation.t option;
doc : Comment.docs;
args : TypeDecl.Constructor.argument;
res : TypeExpr.t option;
}
end
type t = {
parent : Identifier.Signature.t;
type_path : Path.Type.t;
doc : Comment.docs;
type_params : TypeDecl.param list;
private_ : bool;
constructors : Constructor.t list;
}
end =
Extension
(** {3 Exception} *)
and Exception : sig
type t = {
id : Identifier.Exception.t;
source_loc : Identifier.SourceLocation.t option;
doc : Comment.docs;
args : TypeDecl.Constructor.argument;
res : TypeExpr.t option;
}
end =
Exception
(** {3 Values} *)
and Value : sig
type value = Abstract | External of string list
type t = {
id : Identifier.Value.t;
source_loc : Identifier.SourceLocation.t option;
value : value;
doc : Comment.docs;
type_ : TypeExpr.t;
}
end =
Value
(** {3 Classes} *)
and Class : sig
type decl =
| ClassType of ClassType.expr
| Arrow of TypeExpr.label option * TypeExpr.t * decl
type t = {
id : Identifier.Class.t;
source_loc : Identifier.SourceLocation.t option;
doc : Comment.docs;
virtual_ : bool;
params : TypeDecl.param list;
type_ : decl;
expansion : ClassSignature.t option;
}
end =
Class
(** {3 Class Types} *)
and ClassType : sig
type expr =
| Constr of Path.ClassType.t * TypeExpr.t list
| Signature of ClassSignature.t
type t = {
id : Identifier.ClassType.t;
source_loc : Identifier.SourceLocation.t option;
doc : Comment.docs;
virtual_ : bool;
params : TypeDecl.param list;
expr : expr;
expansion : ClassSignature.t option;
}
end =
ClassType
(** {3 Class Signatures} *)
and ClassSignature : sig
module Constraint : sig
type t = { left : TypeExpr.t; right : TypeExpr.t; doc : Comment.docs }
end
module Inherit : sig
type t = { expr : ClassType.expr; doc : Comment.docs }
end
type item =
| Method of Method.t
| InstanceVariable of InstanceVariable.t
| Constraint of Constraint.t
| Inherit of Inherit.t
| Comment of Comment.docs_or_stop
type t = { self : TypeExpr.t option; items : item list; doc : Comment.docs }
end =
ClassSignature
(** {3 Methods} *)
and Method : sig
type t = {
id : Identifier.Method.t;
doc : Comment.docs;
private_ : bool;
virtual_ : bool;
type_ : TypeExpr.t;
}
end =
Method
(** {3 Instance variables} *)
and InstanceVariable : sig
type t = {
id : Identifier.InstanceVariable.t;
doc : Comment.docs;
mutable_ : bool;
virtual_ : bool;
type_ : TypeExpr.t;
}
end =
InstanceVariable
(** {3 Type expressions} *)
and TypeExpr : sig
module Polymorphic_variant : sig
type kind = Fixed | Closed of string list | Open
module Constructor : sig
type t = {
name : string;
constant : bool;
arguments : TypeExpr.t list;
doc : Comment.docs;
}
end
type element = Type of TypeExpr.t | Constructor of Constructor.t
type t = { kind : kind; elements : element list }
end
module Object : sig
type method_ = { name : string; type_ : TypeExpr.t }
type field = Method of method_ | Inherit of TypeExpr.t
type t = { fields : field list; open_ : bool }
end
module Package : sig
type substitution = Fragment.Type.t * TypeExpr.t
type t = { path : Path.ModuleType.t; substitutions : substitution list }
end
type label = Label of string | Optional of string
type t =
| Var of string
| Any
| Alias of t * string
| Arrow of label option * t * t
| Tuple of t list
| Constr of Path.Type.t * t list
| Polymorphic_variant of TypeExpr.Polymorphic_variant.t
| Object of TypeExpr.Object.t
| Class of Path.ClassType.t * t list
| Poly of string list * t
| Package of TypeExpr.Package.t
end =
TypeExpr
(** {3 Compilation units} *)
module rec Compilation_unit : sig
module Import : sig
type t =
| Unresolved of string * Digest.t option
| Resolved of Root.t * Names.ModuleName.t
end
module Source : sig
type t = { file : string; build_dir : string; digest : Digest.t }
end
module Packed : sig
type item = { id : Identifier.Module.t; path : Path.Module.t }
type t = item list
end
type content = Module of Signature.t | Pack of Packed.t
type t = {
id : Identifier.RootModule.t;
root : Root.t;
digest : Digest.t;
imports : Import.t list;
source : Source.t option;
interface : bool;
hidden : bool;
content : content;
expansion : Signature.t option;
linked : bool; (** Whether this unit has been linked. *)
source_loc : Identifier.SourceLocation.t option;
canonical : Path.Module.t option;
}
end =
Compilation_unit
module rec Source_info : sig
type 'a jump_to_impl =
| Unresolved of 'a
| Resolved of Identifier.SourceLocation.t
type 'a jump_to = {
documentation : 'a option;
implementation : 'a jump_to_impl option;
}
type annotation =
| Definition of Paths.Identifier.SourceLocation.t
| Value of Path.Value.t jump_to
| Module of Path.Module.t jump_to
| ModuleType of Path.ModuleType.t jump_to
| Type of Path.Type.t jump_to
type 'a with_pos = 'a * (int * int)
type t = annotation with_pos list
end =
Source_info
module rec Implementation : sig
type t = {
id : Identifier.SourcePage.t option;
digest : Digest.t;
root : Root.t;
linked : bool; (** Whether this unit has been linked. *)
imports : Compilation_unit.Import.t list;
source_info : Source_info.t;
shape_info :
(Compat.shape * Paths.Identifier.SourceLocation.t Compat.shape_uid_map)
option;
}
end =
Implementation
module rec Page : sig
type child = Page_child of string | Module_child of string
type t = {
name : Identifier.Page.t;
root : Root.t;
content : Comment.docs;
children : child list;
frontmatter : Frontmatter.t;
digest : Digest.t;
linked : bool;
}
end =
Page
module rec Asset : sig
type t = { name : Identifier.AssetFile.t; root : Root.t }
end =
Asset
let umty_of_mty : ModuleType.expr -> ModuleType.U.expr option = function
| Signature sg -> Some (Signature sg)
| Path { p_path; _ } -> Some (Path p_path)
| Functor _ -> None
| TypeOf { t_desc; t_original_path; _ } ->
Some (TypeOf (t_desc, t_original_path))
| With { w_substitutions; w_expr; _ } -> Some (With (w_substitutions, w_expr))
(** Query the top-comment of a signature. This is [s.doc] most of the time with
an exception for signature starting with an inline includes. *)
let extract_signature_doc (s : Signature.t) =
let rec uexpr_considered_hidden = function
| ModuleType.U.Path p -> Path.is_hidden (p :> Path.t)
| Signature _ ->
true (* Hidden in some sense, we certainly want its top comment *)
| With (_, e) -> uexpr_considered_hidden e
| TypeOf (ModPath p, _) | TypeOf (StructInclude p, _) ->
Path.is_hidden (p :> Path.t)
in
let should_take_top = function
(* A signature that starts with an include may inherits the
top-comment from the expansion. *)
| { Include.status = `Inline; _ } -> true
| { decl = Alias p; _ } -> Paths.Path.is_hidden (p :> Path.t)
| { decl = ModuleType expr; _ } -> uexpr_considered_hidden expr
in
match (s.doc, s.items) with
| { elements = []; _ }, Include inc :: _ when should_take_top inc ->
inc.expansion.content.doc
| doc, _ -> doc