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
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
open Odoc_model
open Lang
module Id = Paths.Identifier
module Opt = struct
let map f = function Some x -> Some (f x) | None -> None
end
let locations env id locs =
let id = (id :> Id.NonSrc.t) in
match locs with
| Some _ as locs -> locs
| None -> Shape_tools.lookup_def env id
(** Equivalent to {!Comment.synopsis}. *)
let (docs : Component.CComment.docs) =
match docs with
| ({ value = #Comment.nestable_block_element; _ } as e) :: _ ->
Comment.synopsis [ e ]
| _ -> None
let synopsis_of_module env (m : Component.Module.t) =
let open Utils.ResultMonad in
match synopsis_from_comment m.doc with
| Some _ as s -> s
| None -> (
let rec handle_expansion : Tools.expansion -> _ = function
| Functor (_, expr) -> (
match
Tools.expansion_of_module_type_expr ~mark_substituted:true env
expr
with
| Ok e -> handle_expansion e
| Error _ as e -> e)
| Signature sg -> Ok sg
in
match
Tools.expansion_of_module env m >>= fun exp -> handle_expansion exp
with
| Ok sg -> synopsis_from_comment (Component.extract_signature_doc sg)
| Error _ -> None)
let ambiguous_label_warning label_name labels =
let pp_label_loc fmt (`Label (_, x)) =
Location_.pp_span_start fmt x.Component.Label.location
in
Lookup_failures.report_warning
"@[<2>Label '%s' is ambiguous. The other occurences are:@ %a@]" label_name
(Format.pp_print_list ~pp_sep:Format.pp_force_newline pp_label_loc)
labels
(** Raise a warning when a label explicitly set by the user collides. This
warning triggers even if one of the colliding labels have been automatically
generated. *)
let check_ambiguous_label ~loc env
( attrs,
({ Odoc_model.Paths.Identifier.iv = `Label (_, label_name); _ } as id),
_ ) =
if attrs.Comment.heading_label_explicit then
let conflicting (`Label (id', comp)) =
Id.equal id id'
&& not (Location_.span_equal comp.Component.Label.location loc)
in
let label_name = Names.LabelName.to_string label_name in
match Env.lookup_by_name Env.s_label label_name env with
| Ok lbl when conflicting lbl -> ambiguous_label_warning label_name [ lbl ]
| Error (`Ambiguous (hd, tl)) -> (
match List.filter conflicting (hd :: tl) with
| [] -> ()
| xs -> ambiguous_label_warning label_name xs)
| Ok _ | Error `Not_found -> ()
let expansion_needed self target =
let self = (self :> Paths.Path.Resolved.t) in
let hidden_alias = Paths.Path.Resolved.is_hidden self
and self_canonical =
let i = Paths.Path.Resolved.identifier self in
i = (target :> Paths.Identifier.t)
in
self_canonical || hidden_alias
exception Loop
let rec is_forward : Paths.Path.Module.t -> bool = function
| `Resolved _ -> false
| `Root _ -> false
| `Forward _ -> true
| `Identifier _ -> false
| `Dot (p, _) -> is_forward p
| `Apply (p1, p2) -> is_forward p1 || is_forward p2
let rec should_reresolve : Paths.Path.Resolved.t -> bool =
fun p ->
let open Paths.Path.Resolved in
match p with
| `Identifier _ -> false
| `Subst (x, y) -> should_reresolve (x :> t) || should_reresolve (y :> t)
| `Hidden p -> should_reresolve (p :> t)
| `Canonical (x, y) ->
should_reresolve (x :> t) || should_resolve (y :> Paths.Path.t)
| `CanonicalModuleType (x, y) ->
should_reresolve (x :> t) || should_resolve (y :> Paths.Path.t)
| `CanonicalType (x, y) ->
should_reresolve (x :> t) || should_resolve (y :> Paths.Path.t)
| `CanonicalDataType (x, y) ->
should_reresolve (x :> t) || should_resolve (y :> Paths.Path.t)
| `Apply (x, y) ->
should_reresolve (x :> t) || should_reresolve (y :> Paths.Path.Resolved.t)
| `SubstT (x, y) -> should_reresolve (x :> t) || should_reresolve (y :> t)
| `Alias (y, x) ->
should_resolve (x :> Paths.Path.t) || should_reresolve (y :> t)
| `AliasModuleType (x, y) ->
should_reresolve (x :> t) || should_reresolve (y :> t)
| `Type (p, _)
| `Value (p, _)
| `Class (p, _)
| `ClassType (p, _)
| `ModuleType (p, _)
| `Module (p, _) ->
should_reresolve (p :> t)
| `Constructor (p, _) -> should_reresolve (p :> t)
| `OpaqueModule m -> should_reresolve (m :> t)
| `OpaqueModuleType m -> should_reresolve (m :> t)
and should_resolve : Paths.Path.t -> bool =
fun p -> match p with `Resolved p -> should_reresolve p | _ -> true
let type_path : Env.t -> Paths.Path.Type.t -> Paths.Path.Type.t =
fun env p ->
if not (should_resolve (p :> Paths.Path.t)) then p
else
let cp = Component.Of_Lang.(type_path (empty ()) p) in
match cp with
| `Resolved p ->
let result = Tools.reresolve_type env p in
`Resolved Lang_of.(Path.resolved_type (empty ()) result)
| _ -> (
match Tools.resolve_type_path env cp with
| Ok p' ->
let result = Tools.reresolve_type env p' in
`Resolved Lang_of.(Path.resolved_type (empty ()) result)
| Error e ->
Errors.report ~what:(`Type_path cp) ~tools_error:e `Lookup;
p)
let class_type_path : Env.t -> Paths.Path.ClassType.t -> Paths.Path.ClassType.t
=
fun env p ->
if not (should_resolve (p :> Paths.Path.t)) then p
else
let cp = Component.Of_Lang.(class_type_path (empty ()) p) in
match cp with
| `Resolved p ->
let result = Tools.reresolve_class_type env p in
`Resolved Lang_of.(Path.resolved_class_type (empty ()) result)
| _ -> (
match Tools.resolve_class_type_path env cp with
| Ok p' ->
let result = Tools.reresolve_class_type env p' in
`Resolved Lang_of.(Path.resolved_class_type (empty ()) result)
| Error e ->
Errors.report ~what:(`Class_type_path cp) ~tools_error:e `Lookup;
p)
and module_type_path :
Env.t -> Paths.Path.ModuleType.t -> Paths.Path.ModuleType.t =
fun env p ->
if not (should_resolve (p :> Paths.Path.t)) then p
else
let cp = Component.Of_Lang.(module_type_path (empty ()) p) in
match cp with
| `Resolved p ->
let result = Tools.reresolve_module_type env p in
`Resolved Lang_of.(Path.resolved_module_type (empty ()) result)
| _ -> (
match Tools.resolve_module_type_path env cp with
| Ok p' ->
let result = Tools.reresolve_module_type env p' in
`Resolved Lang_of.(Path.resolved_module_type (empty ()) result)
| Error e ->
Errors.report ~what:(`Module_type_path cp) ~tools_error:e `Resolve;
p)
and module_path : Env.t -> Paths.Path.Module.t -> Paths.Path.Module.t =
fun env p ->
if not (should_resolve (p :> Paths.Path.t)) then p
else
let cp = Component.Of_Lang.(module_path (empty ()) p) in
match cp with
| `Resolved p ->
let after = Tools.reresolve_module env p in
`Resolved Lang_of.(Path.resolved_module (empty ()) after)
| _ -> (
match Tools.resolve_module_path env cp with
| Ok p' ->
let result = Tools.reresolve_module env p' in
`Resolved Lang_of.(Path.resolved_module (empty ()) result)
| Error _ when is_forward p -> p
| Error e ->
Errors.report ~what:(`Module_path cp) ~tools_error:e `Resolve;
p)
let rec :
loc:_ -> Env.t -> Comment.inline_element -> Comment.inline_element =
fun ~loc:_ env x ->
match x with
| `Styled (s, ls) ->
`Styled (s, List.map (with_location (comment_inline_element env)) ls)
| `Reference (r, content) as orig -> (
match Ref_tools.resolve_reference env r |> Error.raise_warnings with
| Ok x ->
let content =
match (content, x) with
| [], `Identifier ({ iv = #Id.Label.t_pv; _ } as i) -> (
match Env.lookup_by_id Env.s_label i env with
| Some (`Label (_, lbl)) ->
Odoc_model.Comment.link_content_of_inline_elements
lbl.Component.Label.text
| None -> [])
| content, _ -> content
in
`Reference (`Resolved x, content)
| Error e ->
Errors.report ~what:(`Reference r) ~tools_error:(`Reference e)
`Resolve;
orig)
| y -> y
and paragraph env elts =
List.map (with_location (comment_inline_element env)) elts
and resolve_external_synopsis env synopsis =
let env = Env.inherit_resolver env in
paragraph env synopsis
and env parent ~loc:_
(x : Comment.nestable_block_element) =
match x with
| `Paragraph elts -> `Paragraph (paragraph env elts)
| (`Code_block _ | `Math_block _ | `Verbatim _) as x -> x
| `List (x, ys) ->
`List
( x,
List.rev_map (comment_nestable_block_element_list env parent) ys
|> List.rev )
| `Table { data; align } ->
let data =
let map f x = List.rev_map f x |> List.rev in
map
(map (fun (cell, cell_type) ->
(comment_nestable_block_element_list env parent cell, cell_type)))
data
in
`Table { Comment.data; align }
| `Modules refs ->
let refs =
List.rev_map
(fun (r : Comment.module_reference) ->
match
Ref_tools.resolve_module_reference env r.module_reference
|> Error.raise_warnings
with
| Ok (r, _, m) ->
let module_synopsis =
Opt.map
(resolve_external_synopsis env)
(synopsis_of_module env m)
in
{ Comment.module_reference = `Resolved r; module_synopsis }
| Error e ->
Errors.report
~what:(`Reference (r.module_reference :> Paths.Reference.t))
~tools_error:(`Reference e) `Resolve;
r)
refs
|> List.rev
in
`Modules refs
and env parent
(xs : Comment.nestable_block_element Comment.with_location list) =
List.rev_map (with_location (comment_nestable_block_element env parent)) xs
|> List.rev
and env parent ~loc:_ (x : Comment.tag) =
match x with
| `Deprecated content ->
`Deprecated (comment_nestable_block_element_list env parent content)
| `Param (name, content) ->
`Param (name, comment_nestable_block_element_list env parent content)
| `Raise ((`Reference (r, reference_content) as orig), content) -> (
match Ref_tools.resolve_reference env r |> Error.raise_warnings with
| Ok x ->
`Raise
( `Reference (`Resolved x, reference_content),
comment_nestable_block_element_list env parent content )
| Error e ->
Errors.report ~what:(`Reference r) ~tools_error:(`Reference e)
`Resolve;
`Raise (orig, comment_nestable_block_element_list env parent content))
| `Raise ((`Code_span _ as orig), content) ->
`Raise (orig, comment_nestable_block_element_list env parent content)
| `Return content ->
`Return (comment_nestable_block_element_list env parent content)
| `See (kind, target, content) ->
`See (kind, target, comment_nestable_block_element_list env parent content)
| `Before (version, content) ->
`Before (version, comment_nestable_block_element_list env parent content)
| `Author _ | `Since _ | `Alert _ | `Version _ ->
x
and env parent ~loc (x : Comment.block_element) =
match x with
| #Comment.nestable_block_element as x ->
(comment_nestable_block_element env parent ~loc x
:> Comment.block_element)
| `Heading (attrs, label, elems) ->
let cie = comment_inline_element env in
let elems =
List.rev_map (fun ele -> with_location cie ele) elems |> List.rev
in
let h = (attrs, label, elems) in
check_ambiguous_label ~loc env h;
`Heading h
| `Tag t -> `Tag (comment_tag env parent ~loc t)
and with_location :
type a.
(loc:_ -> a -> a) -> a Location_.with_location -> a Location_.with_location
=
fun fn { value; location = loc } ->
let value = Lookup_failures.with_location loc (fun () -> fn ~loc value) in
{ value; location = loc }
and env parent d =
List.rev_map
(with_location (comment_block_element env (parent :> Id.LabelParent.t)))
d
|> List.rev
and env parent = function
| `Stop -> `Stop
| `Docs d -> `Docs (comment_docs env parent d)
and open_ env parent = function
| { Odoc_model__Lang.Open.doc; _ } as open_ ->
{ open_ with doc = comment_docs env parent doc }
let rec unit env t =
let open Compilation_unit in
let content =
match t.content with
| Module sg ->
let sg = signature env (t.id :> Id.Signature.t) sg in
Module sg
| Pack _ as p -> p
in
{ t with content; linked = true }
and value_ env parent t =
let open Value in
{
t with
locs = locations env t.id t.locs;
doc = comment_docs env parent t.doc;
type_ = type_expression env parent [] t.type_;
}
and exception_ env parent e =
let open Exception in
let res = Opt.map (type_expression env parent []) e.res in
let args = type_decl_constructor_argument env parent e.args in
let locs = locations env e.id e.locs in
let doc = comment_docs env parent e.doc in
{ e with locs; res; args; doc }
and extension env parent t =
let open Extension in
let constructor c =
let open Constructor in
{
c with
locs = locations env c.id c.locs;
args = type_decl_constructor_argument env parent c.args;
res = Opt.map (type_expression env parent []) c.res;
doc = comment_docs env parent c.doc;
}
in
let type_path = type_path env t.type_path in
let constructors = List.map constructor t.constructors in
let doc = comment_docs env parent t.doc in
{ t with type_path; constructors; doc }
and class_type_expr env parent =
let open ClassType in
function
| Constr (path, texps) ->
Constr (path, List.map (type_expression env parent []) texps)
| Signature s -> Signature (class_signature env parent s)
and class_type env parent c =
let open ClassType in
let doc = comment_docs env parent c.doc in
{
c with
locs = locations env c.id c.locs;
expr = class_type_expr env parent c.expr;
doc;
}
and class_signature env parent c =
let open ClassSignature in
let env = Env.open_class_signature c env in
let map_item = function
| Method m -> Method (method_ env parent m)
| InstanceVariable i -> InstanceVariable (instance_variable env parent i)
| Constraint cst -> Constraint (constraint_ env parent cst)
| Inherit c -> Inherit (inherit_ env parent c)
| Comment c -> Comment c
in
{
self = Opt.map (type_expression env parent []) c.self;
items = List.map map_item c.items;
doc = comment_docs env parent c.doc;
}
and method_ env parent m =
let open Method in
let doc = comment_docs env parent m.doc in
{ m with type_ = type_expression env parent [] m.type_; doc }
and instance_variable env parent i =
let open InstanceVariable in
let doc = comment_docs env parent i.doc in
{ i with type_ = type_expression env parent [] i.type_; doc }
and constraint_ env parent cst =
let open ClassSignature.Constraint in
let left = type_expression env parent [] cst.left
and right = type_expression env parent [] cst.right
and doc = comment_docs env parent cst.doc in
{ left; right; doc }
and inherit_ env parent ih =
let open ClassSignature.Inherit in
let expr = class_type_expr env parent ih.expr
and doc = comment_docs env parent ih.doc in
{ expr; doc }
and class_ env parent c =
let open Class in
let rec map_decl = function
| ClassType expr -> ClassType (class_type_expr env parent expr)
| Arrow (lbl, expr, decl) ->
Arrow (lbl, type_expression env parent [] expr, map_decl decl)
in
let doc = comment_docs env parent c.doc in
let locs = locations env c.id c.locs in
let type_ = map_decl c.type_ in
{ c with locs; type_; doc }
and module_substitution env parent m =
let open ModuleSubstitution in
let doc = comment_docs env parent m.doc in
{ m with manifest = module_path env m.manifest; doc }
and signature : Env.t -> Id.Signature.t -> Signature.t -> _ =
fun env id s ->
let env = Env.open_signature s env |> Env.add_docs s.doc in
let items = signature_items env id s.items
and doc = comment_docs env id s.doc in
{ s with items; doc }
and signature_items :
Env.t -> Id.Signature.t -> Signature.item list -> Signature.item list =
fun env id s ->
let open Signature in
let items, _ =
List.fold_left
(fun (items, env) item ->
let std i = (i :: items, env) in
match item with
| Module (r, m) -> std @@ Module (r, module_ env m)
| ModuleSubstitution m ->
let env' = Env.open_module_substitution m env in
(ModuleSubstitution (module_substitution env id m) :: items, env')
| Type (r, t) -> std @@ Type (r, type_decl env id t)
| TypeSubstitution t ->
let env' = Env.open_type_substitution t env in
(TypeSubstitution (type_decl env id t) :: items, env')
| ModuleType mt -> std @@ ModuleType (module_type env mt)
| ModuleTypeSubstitution mts ->
let env' = Env.open_module_type_substitution mts env in
( ModuleTypeSubstitution (module_type_substitution env mts) :: items,
env' )
| Value v -> std @@ Value (value_ env id v)
| Comment c -> std @@ Comment (comment env id c)
| TypExt t -> std @@ TypExt (extension env id t)
| Exception e -> std @@ Exception (exception_ env id e)
| Class (r, c) -> std @@ Class (r, class_ env id c)
| ClassType (r, c) -> std @@ ClassType (r, class_type env id c)
| Include i -> std @@ Include (include_ env i)
| Open o -> std @@ Open (open_ env id o))
([], env) s
in
List.rev items
and simple_expansion :
Env.t ->
Id.Signature.t ->
ModuleType.simple_expansion ->
ModuleType.simple_expansion =
fun env id m ->
match m with
| Signature sg -> Signature (signature env id sg)
| Functor (arg, sg) ->
let env' = Env.add_functor_parameter arg env in
Functor (functor_argument env arg, simple_expansion env' id sg)
and module_ : Env.t -> Module.t -> Module.t =
fun env m ->
let open Module in
let open Utils.ResultMonad in
let sg_id = (m.id :> Id.Signature.t) in
if m.hidden then m
else
let type_ = module_decl env sg_id m.type_ in
let type_ =
match type_ with
| Alias (`Resolved p, _) ->
if expansion_needed p m.id then
let cp = Component.Of_Lang.(resolved_module_path (empty ()) p) in
match
Tools.expansion_of_module_path ~strengthen:false env
(`Resolved cp)
>>= Expand_tools.handle_expansion env (m.id :> Id.Signature.t)
with
| Ok (_, e) ->
let le = Lang_of.(simple_expansion (empty ()) sg_id e) in
Alias (`Resolved p, Some (simple_expansion env sg_id le))
| Error _ -> type_
else type_
| Alias _ | ModuleType _ -> type_
in
let locs = locations env m.id m.locs in
let doc = comment_docs env sg_id m.doc in
{ m with locs; doc; type_ }
and module_decl : Env.t -> Id.Signature.t -> Module.decl -> Module.decl =
fun env id decl ->
let open Module in
match decl with
| ModuleType expr -> ModuleType (module_type_expr env id expr)
| Alias (p, e) ->
Alias (module_path env p, Opt.map (simple_expansion env id) e)
and include_decl : Env.t -> Id.Signature.t -> Include.decl -> Include.decl =
fun env id decl ->
let open Include in
match decl with
| ModuleType expr -> ModuleType (u_module_type_expr env id expr)
| Alias p -> Alias (module_path env p)
and module_type : Env.t -> ModuleType.t -> ModuleType.t =
fun env m ->
let sg_id = (m.id :> Id.Signature.t) in
let open ModuleType in
let expr' =
match m.expr with
| None -> None
| Some expr -> Some (module_type_expr env sg_id expr)
in
let doc = comment_docs env sg_id m.doc in
let locs = (locations env m.id) m.locs in
{ m with locs; expr = expr'; doc }
and module_type_substitution :
Env.t -> ModuleTypeSubstitution.t -> ModuleTypeSubstitution.t =
fun env m ->
let sg_id = (m.id :> Id.Signature.t) in
let open ModuleTypeSubstitution in
let manifest' = module_type_expr env sg_id m.manifest in
let doc = comment_docs env sg_id m.doc in
{ m with manifest = manifest'; doc }
and include_ : Env.t -> Include.t -> Include.t =
fun env i ->
let open Include in
let decl = include_decl env i.parent i.decl in
let doc = comment_docs env i.parent i.doc in
let expansion =
let content =
Lookup_failures.with_context
"While resolving the expansion of include at %a" Location_.pp_span_start
i.loc (fun () ->
let { content; _ } = i.expansion in
let items = signature_items env i.parent content.items
and doc = comment_docs env i.parent content.doc in
{ content with items; doc })
in
{ i.expansion with content }
in
{ i with decl; expansion; doc }
and functor_parameter_parameter :
Env.t -> FunctorParameter.parameter -> FunctorParameter.parameter =
fun env a ->
let sg_id = (a.id :> Id.Signature.t) in
let expr = module_type_expr env sg_id a.expr in
{ a with expr }
and functor_argument env a =
match a with
| FunctorParameter.Unit -> FunctorParameter.Unit
| Named arg -> Named (functor_parameter_parameter env arg)
and handle_fragments env id sg subs =
let open ModuleType in
List.fold_left
(fun (sg_res, subs) lsub ->
match (sg_res, lsub) with
| Result.Ok sg, ModuleEq (frag, decl) ->
let frag' =
match frag with
| `Resolved f ->
let cfrag =
Component.Of_Lang.(resolved_module_fragment (empty ()) f)
in
`Resolved
(Tools.reresolve_module_fragment env cfrag
|> Lang_of.(Path.resolved_module_fragment (empty ())))
| _ -> frag
in
let sg' =
Tools.fragmap ~mark_substituted:true env
Component.Of_Lang.(with_module_type_substitution (empty ()) lsub)
sg
in
(sg', ModuleEq (frag', module_decl env id decl) :: subs)
| Ok sg, TypeEq (frag, eqn) ->
let frag' =
match frag with
| `Resolved f ->
let cfrag =
Component.Of_Lang.(resolved_type_fragment (empty ()) f)
in
`Resolved
(Tools.reresolve_type_fragment env cfrag
|> Lang_of.(Path.resolved_type_fragment (empty ())))
| _ -> frag
in
let sg' =
Tools.fragmap ~mark_substituted:true env
Component.Of_Lang.(with_module_type_substitution (empty ()) lsub)
sg
in
(sg', TypeEq (frag', type_decl_equation env id eqn) :: subs)
| Ok sg, ModuleTypeEq (frag, eqn) ->
let frag' =
match frag with
| `Resolved f ->
let cfrag =
Component.Of_Lang.(resolved_module_type_fragment (empty ()) f)
in
`Resolved
(Tools.reresolve_module_type_fragment env cfrag
|> Lang_of.(Path.resolved_module_type_fragment (empty ())))
| _ -> frag
in
let sg' =
Tools.fragmap ~mark_substituted:true env
Component.Of_Lang.(with_module_type_substitution (empty ()) lsub)
sg
in
(sg', ModuleTypeEq (frag', module_type_expr env id eqn) :: subs)
| Ok sg, ModuleSubst (frag, mpath) ->
let frag' =
match frag with
| `Resolved f ->
let cfrag =
Component.Of_Lang.(resolved_module_fragment (empty ()) f)
in
`Resolved
(Tools.reresolve_module_fragment env cfrag
|> Lang_of.(Path.resolved_module_fragment (empty ())))
| _ -> frag
in
let sg' =
Tools.fragmap ~mark_substituted:true env
Component.Of_Lang.(with_module_type_substitution (empty ()) lsub)
sg
in
(sg', ModuleSubst (frag', module_path env mpath) :: subs)
| Ok sg, TypeSubst (frag, eqn) ->
let frag' =
match frag with
| `Resolved f ->
let cfrag =
Component.Of_Lang.(resolved_type_fragment (empty ()) f)
in
`Resolved
(Tools.reresolve_type_fragment env cfrag
|> Lang_of.(Path.resolved_type_fragment (empty ())))
| _ -> frag
in
let sg' =
Tools.fragmap ~mark_substituted:true env
Component.Of_Lang.(with_module_type_substitution (empty ()) lsub)
sg
in
(sg', TypeSubst (frag', type_decl_equation env id eqn) :: subs)
| Ok sg, ModuleTypeSubst (frag, eqn) ->
let frag' =
match frag with
| `Resolved f ->
let cfrag =
Component.Of_Lang.(resolved_module_type_fragment (empty ()) f)
in
`Resolved
(Tools.reresolve_module_type_fragment env cfrag
|> Lang_of.(Path.resolved_module_type_fragment (empty ())))
| _ -> frag
in
let sg' =
Tools.fragmap ~mark_substituted:true env
Component.Of_Lang.(with_module_type_substitution (empty ()) lsub)
sg
in
(sg', ModuleTypeSubst (frag', module_type_expr env id eqn) :: subs)
| (Error _ as e), lsub -> (e, lsub :: subs))
(Ok sg, []) subs
|> snd |> List.rev
and u_module_type_expr :
Env.t -> Id.Signature.t -> ModuleType.U.expr -> ModuleType.U.expr =
fun env id expr ->
match expr with
| Signature s -> Signature s
| Path p -> Path (module_type_path env p)
| With (subs, expr) as unresolved -> (
let cexpr = Component.Of_Lang.(u_module_type_expr (empty ()) expr) in
match
Tools.signature_of_u_module_type_expr ~mark_substituted:true env cexpr
with
| Ok sg ->
With (handle_fragments env id sg subs, u_module_type_expr env id expr)
| Error e ->
Errors.report ~what:(`Module_type_U cexpr) ~tools_error:e `Resolve;
unresolved)
| TypeOf { t_desc = StructInclude p; t_expansion } ->
TypeOf { t_desc = StructInclude (module_path env p); t_expansion }
| TypeOf { t_desc = ModPath p; t_expansion } ->
TypeOf { t_desc = ModPath (module_path env p); t_expansion }
and module_type_expr :
Env.t -> Id.Signature.t -> ModuleType.expr -> ModuleType.expr =
fun env id expr ->
let open ModuleType in
let open Utils.ResultMonad in
let do_expn cur (e : Paths.Path.ModuleType.t option) =
match (cur, e) with
| Some e, _ ->
Some (simple_expansion env (id :> Paths.Identifier.Signature.t) e)
| None, Some (`Resolved p_path) ->
if expansion_needed p_path id then
let cp =
Component.Of_Lang.(resolved_module_type_path (empty ()) p_path)
in
match
Tools.expansion_of_module_type_expr ~mark_substituted:false env
(Path { p_path = `Resolved cp; p_expansion = None })
>>= Expand_tools.handle_expansion env (id :> Id.Signature.t)
with
| Ok (_, e) ->
let le = Lang_of.(simple_expansion (empty ()) id e) in
Some (simple_expansion env id le)
| Error _ -> None
else None
| None, _ -> None
in
match expr with
| Signature s -> Signature (signature env id s)
| Path { p_path; p_expansion } ->
let p_path = module_type_path env p_path in
Path { p_path; p_expansion = do_expn p_expansion (Some p_path) }
| With { w_substitutions; w_expansion; w_expr } as unresolved -> (
let cexpr = Component.Of_Lang.(u_module_type_expr (empty ()) w_expr) in
match
Tools.signature_of_u_module_type_expr ~mark_substituted:true env cexpr
with
| Ok sg ->
With
{
w_substitutions = handle_fragments env id sg w_substitutions;
w_expansion = do_expn w_expansion None;
w_expr = u_module_type_expr env id w_expr;
}
| Error e ->
Errors.report ~what:(`Module_type_U cexpr) ~tools_error:e `Expand;
unresolved)
| Functor (arg, res) ->
let arg' = functor_argument env arg in
let env = Env.add_functor_parameter arg env in
let res' = module_type_expr env (Paths.Identifier.Mk.result id) res in
Functor (arg', res')
| TypeOf { t_desc = StructInclude p; t_expansion } ->
TypeOf
{
t_desc = StructInclude (module_path env p);
t_expansion = do_expn t_expansion None;
}
| TypeOf { t_desc = ModPath p; t_expansion } ->
TypeOf
{
t_desc = ModPath (module_path env p);
t_expansion = do_expn t_expansion None;
}
and type_decl_representation :
Env.t ->
Id.Signature.t ->
TypeDecl.Representation.t ->
TypeDecl.Representation.t =
fun env parent r ->
let open TypeDecl.Representation in
match r with
| Variant cs -> Variant (List.map (type_decl_constructor env parent) cs)
| Record fs -> Record (List.map (type_decl_field env parent) fs)
| Extensible -> Extensible
and type_decl : Env.t -> Id.Signature.t -> TypeDecl.t -> TypeDecl.t =
fun env parent t ->
let open TypeDecl in
let equation = type_decl_equation env parent t.equation in
let doc = comment_docs env parent t.doc in
let locs = locations env t.id t.locs in
let hidden_path =
match equation.Equation.manifest with
| Some (Constr (`Resolved path, params))
when Paths.Path.Resolved.(is_hidden (path :> t))
|| Paths.Path.Resolved.(identifier (path :> t))
= (t.id :> Paths.Identifier.t) ->
Some (path, params)
| _ -> None
in
let representation =
Opt.map (type_decl_representation env parent) t.representation
in
let default = { t with locs; equation; doc; representation } in
match hidden_path with
| Some (p, params) -> (
let p' = Component.Of_Lang.(resolved_type_path (empty ()) p) in
match Tools.lookup_type env p' with
| Ok (`FType (_, t')) ->
let equation =
try
Expand_tools.collapse_eqns default.equation
(Lang_of.type_decl_equation (Lang_of.empty ())
(parent :> Id.FieldParent.t)
t'.equation)
params
with _ -> default.equation
in
{ default with equation = type_decl_equation env parent equation }
| Ok (`FClass _ | `FClassType _ | `FType_removed _) | Error _ -> default)
| None -> default
and type_decl_equation env parent t =
let open TypeDecl.Equation in
let manifest = Opt.map (type_expression env parent []) t.manifest in
let constraints =
List.map
(fun (tex1, tex2) ->
(type_expression env parent [] tex1, type_expression env parent [] tex2))
t.constraints
in
{ t with manifest; constraints }
and type_decl_field env parent f =
let open TypeDecl.Field in
let doc = comment_docs env parent f.doc in
{ f with type_ = type_expression env parent [] f.type_; doc }
and type_decl_constructor_argument env parent c =
let open TypeDecl.Constructor in
match c with
| Tuple ts -> Tuple (List.map (type_expression env parent []) ts)
| Record fs -> Record (List.map (type_decl_field env parent) fs)
and type_decl_constructor env parent c =
let open TypeDecl.Constructor in
let doc = comment_docs env parent c.doc in
let args = type_decl_constructor_argument env parent c.args in
let res = Opt.map (type_expression env parent []) c.res in
{ c with doc; args; res }
and type_expression_polyvar env parent visited v =
let open TypeExpr.Polymorphic_variant in
let constructor c =
let open Constructor in
let doc = comment_docs env parent c.doc in
{
c with
arguments = List.map (type_expression env parent visited) c.arguments;
doc;
}
in
let element = function
| Type t ->
Type
(match type_expression env parent visited t with
| Constr _ as x -> x
| _ -> t)
| Constructor c -> Constructor (constructor c)
in
{ v with elements = List.map element v.elements }
and type_expression_object env parent visited o =
let open TypeExpr.Object in
let method_ m =
{ m with type_ = type_expression env parent visited m.type_ }
in
let field = function
| Method m -> Method (method_ m)
| Inherit t -> Inherit (type_expression env parent visited t)
in
{ o with fields = List.map field o.fields }
and type_expression_package env parent visited p =
let open TypeExpr.Package in
let substitution (frag, t) =
let cfrag = Component.Of_Lang.(type_fragment (empty ()) frag) in
let frag' =
match cfrag with
| `Resolved f -> `Resolved (Tools.reresolve_type_fragment env f)
| _ -> cfrag
in
( Lang_of.(Path.type_fragment (empty ()) frag'),
type_expression env parent visited t )
in
{
path = module_type_path env p.path;
substitutions = List.map substitution p.substitutions;
}
and type_expression : Env.t -> Id.Signature.t -> _ -> _ =
fun env parent visited texpr ->
let open TypeExpr in
match texpr with
| Var _ | Any -> texpr
| Alias (t, str) -> Alias (type_expression env parent visited t, str)
| Arrow (lbl, t1, t2) ->
Arrow
( lbl,
type_expression env parent visited t1,
type_expression env parent visited t2 )
| Tuple ts -> Tuple (List.map (type_expression env parent visited) ts)
| Constr (path', ts') -> (
let path = type_path env path' in
let ts = List.map (type_expression env parent visited) ts' in
if not (Paths.Path.is_hidden (path :> Paths.Path.t)) then Constr (path, ts)
else
let cp = Component.Of_Lang.(type_path (empty ()) path') in
match Tools.resolve_type env ~add_canonical:true cp with
| Ok (cp', `FType (_, t)) ->
let cp' = Tools.reresolve_type env cp' in
let p = Lang_of.(Path.resolved_type (empty ()) cp') in
if List.mem p visited then raise Loop
else if Cpath.is_resolved_type_hidden cp' then
match t.Component.TypeDecl.equation with
| { manifest = Some expr; params; _ } -> (
try
let map =
List.fold_left2
(fun acc param sub ->
match param.Lang.TypeDecl.desc with
| Lang.TypeDecl.Var x -> (x, sub) :: acc
| Any -> acc)
[] params ts
in
let t' =
Expand_tools.type_expr map
Lang_of.(
type_expr (empty ()) (parent :> Id.LabelParent.t) expr)
in
type_expression env parent (p :: visited) t'
with
| Loop -> Constr (`Resolved p, ts)
| e ->
Format.eprintf
"Caught unexpected exception when expanding type \
declaration (%s)\n\
%!"
(Printexc.to_string e);
Constr (`Resolved p, ts))
| _ -> Constr (`Resolved p, ts)
else Constr (`Resolved p, ts)
| Ok (cp', (`FClass _ | `FClassType _)) ->
let p = Lang_of.(Path.resolved_type (empty ()) cp') in
Constr (`Resolved p, ts)
| Ok (_cp, `FType_removed (_, x, _eq)) ->
Lang_of.(type_expr (empty ()) (parent :> Id.LabelParent.t) x)
| Error _ -> Constr (path', ts))
| Polymorphic_variant v ->
Polymorphic_variant (type_expression_polyvar env parent visited v)
| Object o -> Object (type_expression_object env parent visited o)
| Class (path', ts') -> (
let path = class_type_path env path' in
let ts = List.map (type_expression env parent visited) ts' in
if not (Paths.Path.is_hidden (path :> Paths.Path.t)) then Class (path, ts)
else
let cp = Component.Of_Lang.(class_type_path (empty ()) path') in
match Tools.resolve_class_type env cp with
| Ok (cp', (`FClass _ | `FClassType _)) ->
let cp' = Tools.reresolve_class_type env cp' in
let p = Lang_of.(Path.resolved_class_type (empty ()) cp') in
Class (`Resolved p, ts)
| _ -> Class (path', ts))
| Poly (strs, t) -> Poly (strs, type_expression env parent visited t)
| Package p -> Package (type_expression_package env parent visited p)
let link ~filename x y =
Lookup_failures.catch_failures ~filename (fun () ->
if y.Lang.Compilation_unit.linked || y.hidden then y else unit x y)
let page env page =
let () =
List.iter
(fun child ->
let check_resolves ~what f name =
match f name env with
| Some _ -> ()
| None -> Errors.report ~what `Lookup
in
match child with
| Page.Asset_child _ | Page.Source_tree_child _ -> ()
| Page.Page_child page ->
check_resolves ~what:(`Child_page page) Env.lookup_page page
| Page.Module_child mod_ ->
check_resolves ~what:(`Child_module mod_) Env.lookup_root_module
mod_)
page.Lang.Page.children
in
{
page with
Page.content = comment_docs env page.Page.name page.content;
linked = true;
}
let resolve_page ~filename env p =
Lookup_failures.catch_failures ~filename (fun () ->
if p.Lang.Page.linked then p else page env p)