Source file ast_mapper.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
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
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
[@@@ocaml.warning "-60"] module Str = Ast_helper.Str
[@@@ocaml.warning "+60"]
open Parsetree
open Ast_helper
open Location
module String = Misc.Stdlib.String
type mapper = {
arg_label: mapper -> Asttypes.arg_label -> Asttypes.arg_label;
attribute: mapper -> attribute -> attribute;
attributes: mapper -> attribute list -> attribute list;
ext_attrs: mapper -> ext_attrs -> ext_attrs;
binding_op: mapper -> binding_op -> binding_op;
case: mapper -> case -> case;
cases: mapper -> case list -> case list;
class_declaration: mapper -> class_declaration -> class_declaration;
class_description: mapper -> class_description -> class_description;
class_expr: mapper -> class_expr -> class_expr;
class_field: mapper -> class_field -> class_field;
class_signature: mapper -> class_signature -> class_signature;
class_structure: mapper -> class_structure -> class_structure;
class_type: mapper -> class_type -> class_type;
class_type_declaration: mapper -> class_type_declaration
-> class_type_declaration;
class_type_field: mapper -> class_type_field -> class_type_field;
constant: mapper -> constant -> constant;
constructor_declaration: mapper -> constructor_declaration
-> constructor_declaration;
expr: mapper -> expression -> expression;
extension: mapper -> extension -> extension;
extension_constructor: mapper -> extension_constructor
-> extension_constructor;
include_declaration: mapper -> include_declaration -> include_declaration;
include_description: mapper -> include_description -> include_description;
label_declaration: mapper -> label_declaration -> label_declaration;
location: mapper -> Location.t -> Location.t;
module_binding: mapper -> module_binding -> module_binding;
module_declaration: mapper -> module_declaration -> module_declaration;
module_substitution: mapper -> module_substitution -> module_substitution;
module_expr: mapper -> module_expr -> module_expr;
module_type: mapper -> module_type -> module_type;
module_type_declaration: mapper -> module_type_declaration
-> module_type_declaration;
open_declaration: mapper -> open_declaration -> open_declaration;
open_description: mapper -> open_description -> open_description;
pat: mapper -> pattern -> pattern;
payload: mapper -> payload -> payload;
signature: mapper -> signature -> signature;
signature_item: mapper -> signature_item -> signature_item;
structure: mapper -> structure -> structure;
structure_item: mapper -> structure_item -> structure_item;
toplevel_directive: mapper -> toplevel_directive -> toplevel_directive;
toplevel_phrase: mapper -> toplevel_phrase -> toplevel_phrase;
typ: mapper -> core_type -> core_type;
type_declaration: mapper -> type_declaration -> type_declaration;
type_extension: mapper -> type_extension -> type_extension;
type_exception: mapper -> type_exception -> type_exception;
type_kind: mapper -> type_kind -> type_kind;
value_binding: mapper -> value_binding -> value_binding;
value_bindings: mapper -> value_bindings -> value_bindings;
value_description: mapper -> value_description -> value_description;
with_constraint: mapper -> with_constraint -> with_constraint;
directive_argument: mapper -> directive_argument -> directive_argument;
repl_phrase: mapper -> repl_phrase -> repl_phrase;
}
let map_fst f (x, y) = (f x, y)
let map_tuple f1 f2 (x, y) = (f1 x, f2 y)
let map_tuple3 f1 f2 f3 (x, y, z) = (f1 x, f2 y, f3 z)
let map_opt f = function None -> None | Some x -> Some (f x)
let map_loc sub {loc; txt} = {loc = sub.location sub loc; txt}
let variant_var sub x =
{loc = sub.location sub x.loc; txt= map_loc sub x.txt}
let map_package_type sub (lid, l, attrs) =
(map_loc sub lid),
(List.map (map_tuple (map_loc sub) (sub.typ sub)) l),
sub.attributes sub attrs
let map_arg_label sub = function
| Asttypes.Nolabel -> Asttypes.Nolabel
| Labelled x -> Labelled (map_loc sub x)
| Optional x -> Optional (map_loc sub x)
let map_value_constraint sub = function
| Pvc_constraint {locally_abstract_univars=vars; typ} ->
let locally_abstract_univars = List.map (map_loc sub) vars in
let typ = sub.typ sub typ in
Pvc_constraint { locally_abstract_univars; typ }
| Pvc_coercion { ground; coercion } ->
let ground = Option.map (sub.typ sub) ground in
let coercion = sub.typ sub coercion in
Pvc_coercion { ground; coercion }
module FP = struct
let map_param_val sub ((lab, def, p) : pparam_val) : pparam_val =
(sub.arg_label sub lab, map_opt (sub.expr sub) def, sub.pat sub p)
let map_param_newtype sub (ty : string loc list) : string loc list =
List.map (map_loc sub) ty
let map_expr sub = function
| Pparam_val x -> Pparam_val (map_param_val sub x)
| Pparam_newtype x -> Pparam_newtype (map_param_newtype sub x)
let map_class sub x = map_param_val sub x
let map sub f { pparam_loc; pparam_desc } =
let pparam_loc = sub.location sub pparam_loc in
let pparam_desc = f sub pparam_desc in
{ pparam_loc; pparam_desc }
end
module Flag = struct
open Asttypes
let map_obj_closed sub = function
| OClosed -> OClosed
| OOpen loc -> OOpen (sub.location sub loc)
let map_private sub = function
| Private loc -> Private (sub.location sub loc)
| Public -> Public
let map_mutable sub = function
| Mutable loc -> Mutable (sub.location sub loc)
| Immutable -> Immutable
let map_virtual sub = function
| Virtual loc -> Virtual (sub.location sub loc)
| Concrete -> Concrete
let map_private_virtual sub { pv_priv; pv_virt } =
let pv_priv = map_opt (sub.location sub) pv_priv in
let pv_virt = map_opt (sub.location sub) pv_virt in
{ pv_priv; pv_virt }
let map_mutable_virtual sub { mv_mut; mv_virt } =
let mv_mut = map_opt (sub.location sub) mv_mut in
let mv_virt = map_opt (sub.location sub) mv_virt in
{ mv_mut; mv_virt }
end
module C = struct
let map sub { pconst_desc; pconst_loc } =
let loc = sub.location sub pconst_loc in
let desc =
match pconst_desc with
| Pconst_integer _
| Pconst_char _
| Pconst_float _ ->
pconst_desc
| Pconst_string (s, loc, quotation_delimiter) ->
Pconst_string (s, sub.location sub loc, quotation_delimiter)
in
Const.mk ~loc desc
end
module T = struct
let row_field sub {
prf_desc;
prf_loc;
prf_attributes;
} =
let loc = sub.location sub prf_loc in
let attrs = sub.attributes sub prf_attributes in
let desc = match prf_desc with
| Rtag (l, b, tl) -> Rtag (variant_var sub l, b, List.map (sub.typ sub) tl)
| Rinherit t -> Rinherit (sub.typ sub t)
in
Rf.mk ~loc ~attrs desc
let object_field sub {
pof_desc;
pof_loc;
pof_attributes;
} =
let loc = sub.location sub pof_loc in
let attrs = sub.attributes sub pof_attributes in
let desc = match pof_desc with
| Otag (l, t) -> Otag (map_loc sub l, sub.typ sub t)
| Oinherit t -> Oinherit (sub.typ sub t)
in
Of.mk ~loc ~attrs desc
let map_arrow_param sub {pap_label; pap_loc; pap_type} =
let pap_label = sub.arg_label sub pap_label in
let pap_loc = sub.location sub pap_loc in
let pap_type = sub.typ sub pap_type in
{pap_label; pap_loc; pap_type}
let map sub {ptyp_desc = desc; ptyp_loc = loc; ptyp_attributes = attrs} =
let open Typ in
let loc = sub.location sub loc in
let attrs = sub.attributes sub attrs in
match desc with
| Ptyp_any -> any ~loc ~attrs ()
| Ptyp_var s -> var ~loc ~attrs s
| Ptyp_arrow (params, t2) ->
arrow ~loc ~attrs (List.map (map_arrow_param sub) params)
(sub.typ sub t2)
| Ptyp_tuple tyl -> tuple ~loc ~attrs (List.map (sub.typ sub) tyl)
| Ptyp_constr (lid, tl) ->
constr ~loc ~attrs (map_loc sub lid) (List.map (sub.typ sub) tl)
| Ptyp_object (l, o) ->
object_ ~loc ~attrs (List.map (object_field sub) l)
(Flag.map_obj_closed sub o)
| Ptyp_class (lid, tl) ->
class_ ~loc ~attrs (map_loc sub lid) (List.map (sub.typ sub) tl)
| Ptyp_alias (t, s) -> alias ~loc ~attrs (sub.typ sub t) (map_loc sub s)
| Ptyp_variant (rl, b, ll) ->
variant ~loc ~attrs (List.map (row_field sub) rl) b
(map_opt (List.map (variant_var sub)) ll)
| Ptyp_poly (sl, t) -> poly ~loc ~attrs
(List.map (map_loc sub) sl) (sub.typ sub t)
| Ptyp_package pt ->
package ~loc ~attrs (map_package_type sub pt)
| Ptyp_open (mod_ident, t) ->
open_ ~loc ~attrs (map_loc sub mod_ident) (sub.typ sub t)
| Ptyp_extension x -> extension ~loc ~attrs (sub.extension sub x)
let map_type_declaration sub
{ptype_name; ptype_params; ptype_cstrs;
ptype_kind;
ptype_private;
ptype_manifest;
ptype_attributes;
ptype_loc} =
let loc = sub.location sub ptype_loc in
let attrs = sub.ext_attrs sub ptype_attributes in
Type.mk ~loc ~attrs (map_loc sub ptype_name)
~params:(List.map (map_fst (sub.typ sub)) ptype_params)
~priv:(Flag.map_private sub ptype_private)
~cstrs:(List.map
(map_tuple3 (sub.typ sub) (sub.typ sub) (sub.location sub))
ptype_cstrs)
~kind:(sub.type_kind sub ptype_kind)
?manifest:(map_opt (sub.typ sub) ptype_manifest)
let map_type_kind sub = function
| Ptype_abstract -> Ptype_abstract
| Ptype_variant l ->
Ptype_variant (List.map (sub.constructor_declaration sub) l)
| Ptype_record l -> Ptype_record (List.map (sub.label_declaration sub) l)
| Ptype_open -> Ptype_open
let map_constructor_arguments sub = function
| Pcstr_tuple l -> Pcstr_tuple (List.map (sub.typ sub) l)
| Pcstr_record (loc, l) ->
let loc = sub.location sub loc in
let l = List.map (sub.label_declaration sub) l in
Pcstr_record (loc, l)
let map_type_extension sub
{ptyext_path; ptyext_params;
ptyext_constructors;
ptyext_private;
ptyext_loc;
ptyext_attributes} =
let loc = sub.location sub ptyext_loc in
let attrs = sub.ext_attrs sub ptyext_attributes in
Te.mk ~loc ~attrs
(map_loc sub ptyext_path)
(List.map (sub.extension_constructor sub) ptyext_constructors)
~params:(List.map (map_fst (sub.typ sub)) ptyext_params)
~priv:(Flag.map_private sub ptyext_private)
let map_type_exception sub
{ptyexn_constructor; ptyexn_loc; ptyexn_attributes} =
let loc = sub.location sub ptyexn_loc in
let attrs = sub.ext_attrs sub ptyexn_attributes in
Te.mk_exception ~loc ~attrs
(sub.extension_constructor sub ptyexn_constructor)
let map_extension_constructor_kind sub = function
Pext_decl(vars, ctl, cto) ->
Pext_decl(List.map (map_loc sub) vars,
map_constructor_arguments sub ctl,
map_opt (sub.typ sub) cto)
| Pext_rebind li ->
Pext_rebind (map_loc sub li)
let map_extension_constructor sub
{pext_name;
pext_kind;
pext_loc;
pext_attributes} =
let loc = sub.location sub pext_loc in
let attrs = sub.attributes sub pext_attributes in
Te.constructor ~loc ~attrs
(map_loc sub pext_name)
(map_extension_constructor_kind sub pext_kind)
end
module CT = struct
let map sub {pcty_loc = loc; pcty_desc = desc; pcty_attributes = attrs} =
let open Cty in
let loc = sub.location sub loc in
let attrs = sub.attributes sub attrs in
match desc with
| Pcty_constr (lid, tys) ->
constr ~loc ~attrs (map_loc sub lid) (List.map (sub.typ sub) tys)
| Pcty_signature x -> signature ~loc ~attrs (sub.class_signature sub x)
| Pcty_arrow (params, ct) ->
arrow ~loc ~attrs (List.map (T.map_arrow_param sub) params)
(sub.class_type sub ct)
| Pcty_extension x -> extension ~loc ~attrs (sub.extension sub x)
| Pcty_open (o, ct) ->
open_ ~loc ~attrs (sub.open_description sub o) (sub.class_type sub ct)
let map_field sub {pctf_desc = desc; pctf_loc = loc; pctf_attributes = attrs}
=
let open Ctf in
let loc = sub.location sub loc in
let attrs = sub.attributes sub attrs in
match desc with
| Pctf_inherit ct -> inherit_ ~loc ~attrs (sub.class_type sub ct)
| Pctf_val (s, mv, t) ->
val_ ~loc ~attrs (map_loc sub s) (Flag.map_mutable_virtual sub mv)
(sub.typ sub t)
| Pctf_method (s, pv, t) ->
method_ ~loc ~attrs (map_loc sub s) (Flag.map_private_virtual sub pv)
(sub.typ sub t)
| Pctf_constraint (t1, t2) ->
constraint_ ~loc ~attrs (sub.typ sub t1) (sub.typ sub t2)
| Pctf_attribute x -> attribute ~loc (sub.attribute sub x)
| Pctf_extension x -> extension ~loc ~attrs (sub.extension sub x)
let map_signature sub {pcsig_self; pcsig_fields} =
Csig.mk
(map_opt (sub.typ sub) pcsig_self)
(List.map (sub.class_type_field sub) pcsig_fields)
end
let map_functor_param sub {loc; txt} =
let loc = sub.location sub loc in
let txt =
match txt with
| Unit -> Unit
| Named (s, mt) -> Named (map_loc sub s, sub.module_type sub mt)
in
{loc; txt}
module MT = struct
let map sub {pmty_desc = desc; pmty_loc = loc; pmty_attributes = attrs} =
let open Mty in
let loc = sub.location sub loc in
let attrs = sub.attributes sub attrs in
match desc with
| Pmty_ident s -> ident ~loc ~attrs (map_loc sub s)
| Pmty_alias s -> alias ~loc ~attrs (map_loc sub s)
| Pmty_signature sg -> signature ~loc ~attrs (sub.signature sub sg)
| Pmty_functor (params, mt, short) ->
functor_ ~loc ~attrs
(List.map (map_functor_param sub) params)
(sub.module_type sub mt)
short
| Pmty_with (mt, l) ->
with_ ~loc ~attrs (sub.module_type sub mt)
(List.map (sub.with_constraint sub) l)
| Pmty_typeof me -> typeof_ ~loc ~attrs (sub.module_expr sub me)
| Pmty_extension x -> extension ~loc ~attrs (sub.extension sub x)
let map_with_constraint sub = function
| Pwith_type (lid, d) ->
Pwith_type (map_loc sub lid, sub.type_declaration sub d)
| Pwith_module (lid, lid2) ->
Pwith_module (map_loc sub lid, map_loc sub lid2)
| Pwith_modtype (lid, mty) ->
Pwith_modtype (map_loc sub lid, sub.module_type sub mty)
| Pwith_typesubst (lid, d) ->
Pwith_typesubst (map_loc sub lid, sub.type_declaration sub d)
| Pwith_modsubst (s, lid) ->
Pwith_modsubst (map_loc sub s, map_loc sub lid)
| Pwith_modtypesubst (lid, mty) ->
Pwith_modtypesubst (map_loc sub lid, sub.module_type sub mty)
let map_signature_item sub {psig_desc = desc; psig_loc = loc} =
let open Sig in
let loc = sub.location sub loc in
match desc with
| Psig_value vd -> value ~loc (sub.value_description sub vd)
| Psig_type (rf, l) ->
type_ ~loc rf (List.map (sub.type_declaration sub) l)
| Psig_typesubst l ->
type_subst ~loc (List.map (sub.type_declaration sub) l)
| Psig_typext te -> type_extension ~loc (sub.type_extension sub te)
| Psig_exception ed -> exception_ ~loc (sub.type_exception sub ed)
| Psig_module x -> module_ ~loc (sub.module_declaration sub x)
| Psig_modsubst x -> mod_subst ~loc (sub.module_substitution sub x)
| Psig_recmodule l ->
rec_module ~loc (List.map (sub.module_declaration sub) l)
| Psig_modtype x -> modtype ~loc (sub.module_type_declaration sub x)
| Psig_modtypesubst x ->
modtype_subst ~loc (sub.module_type_declaration sub x)
| Psig_open x -> open_ ~loc (sub.open_description sub x)
| Psig_include x -> include_ ~loc (sub.include_description sub x)
| Psig_class l -> class_ ~loc (List.map (sub.class_description sub) l)
| Psig_class_type l ->
class_type ~loc (List.map (sub.class_type_declaration sub) l)
| Psig_extension (x, attrs) ->
let attrs = sub.attributes sub attrs in
extension ~loc ~attrs (sub.extension sub x)
| Psig_attribute x -> attribute ~loc (sub.attribute sub x)
end
module M = struct
let map sub {pmod_loc = loc; pmod_desc = desc; pmod_attributes = attrs} =
let open Mod in
let loc = sub.location sub loc in
let attrs = sub.attributes sub attrs in
match desc with
| Pmod_ident x -> ident ~loc ~attrs (map_loc sub x)
| Pmod_structure str -> structure ~loc ~attrs (sub.structure sub str)
| Pmod_functor (params, body) ->
functor_ ~loc ~attrs
(List.map (map_functor_param sub) params)
(sub.module_expr sub body)
| Pmod_apply (m1, m2) ->
apply ~loc ~attrs (sub.module_expr sub m1) (sub.module_expr sub m2)
| Pmod_apply_unit (me, lc) ->
apply_unit ~loc ~attrs (sub.module_expr sub me) (sub.location sub lc)
| Pmod_constraint (m, mty) ->
constraint_ ~loc ~attrs (sub.module_expr sub m)
(sub.module_type sub mty)
| Pmod_unpack (e, ty1, ty2) ->
unpack ~loc ~attrs
(sub.expr sub e)
(map_opt (map_package_type sub) ty1)
(map_opt (map_package_type sub) ty2)
| Pmod_extension x -> extension ~loc ~attrs (sub.extension sub x)
| Pmod_hole -> hole ~loc ~attrs ()
let map_structure_item sub {pstr_loc = loc; pstr_desc = desc} =
let open Str in
let loc = sub.location sub loc in
match desc with
| Pstr_eval (x, attrs) ->
let attrs = sub.attributes sub attrs in
eval ~loc ~attrs (sub.expr sub x)
| Pstr_value lbs -> value ~loc (sub.value_bindings sub lbs)
| Pstr_primitive vd -> primitive ~loc (sub.value_description sub vd)
| Pstr_type (rf, l) -> type_ ~loc rf (List.map (sub.type_declaration sub) l)
| Pstr_typext te -> type_extension ~loc (sub.type_extension sub te)
| Pstr_exception ed -> exception_ ~loc (sub.type_exception sub ed)
| Pstr_module x -> module_ ~loc (sub.module_binding sub x)
| Pstr_recmodule l -> rec_module ~loc (List.map (sub.module_binding sub) l)
| Pstr_modtype x -> modtype ~loc (sub.module_type_declaration sub x)
| Pstr_open x -> open_ ~loc (sub.open_declaration sub x)
| Pstr_class l -> class_ ~loc (List.map (sub.class_declaration sub) l)
| Pstr_class_type l ->
class_type ~loc (List.map (sub.class_type_declaration sub) l)
| Pstr_include x -> include_ ~loc (sub.include_declaration sub x)
| Pstr_extension (x, attrs) ->
let attrs = sub.attributes sub attrs in
extension ~loc ~attrs (sub.extension sub x)
| Pstr_attribute x -> attribute ~loc (sub.attribute sub x)
end
module E = struct
let map_function_param sub { pparam_loc = loc; pparam_desc = desc } =
let loc = sub.location sub loc in
let desc =
match desc with
| Pparam_val (lab, def, p) ->
Pparam_val
(sub.arg_label sub lab,
map_opt (sub.expr sub) def,
sub.pat sub p)
| Pparam_newtype ty ->
Pparam_newtype (List.map (map_loc sub) ty)
in
{ pparam_loc = loc; pparam_desc = desc }
let map_function_body sub body =
match body with
| Pfunction_body e ->
Pfunction_body (sub.expr sub e)
| Pfunction_cases (cases, loc, attributes) ->
let cases = sub.cases sub cases in
let loc = sub.location sub loc in
let attributes = sub.attributes sub attributes in
Pfunction_cases (cases, loc, attributes)
let map_constraint sub c =
match c with
| Pconstraint ty -> Pconstraint (sub.typ sub ty)
| Pcoerce (ty1, ty2) -> Pcoerce (map_opt (sub.typ sub) ty1, sub.typ sub ty2)
let map_if_branch sub {if_cond; if_body; if_attrs; if_loc_then} =
let if_cond = sub.expr sub if_cond in
let if_body = sub.expr sub if_body in
let if_attrs = sub.attributes sub if_attrs in
let if_loc_then = sub.location sub if_loc_then in
{ if_cond; if_body; if_attrs; if_loc_then }
let map sub {pexp_loc = loc; pexp_desc = desc; pexp_attributes = attrs} =
let open Exp in
let loc = sub.location sub loc in
let attrs = sub.attributes sub attrs in
match desc with
| Pexp_ident x -> ident ~loc ~attrs (map_loc sub x)
| Pexp_constant x -> constant ~loc ~attrs (sub.constant sub x)
| Pexp_let (lbs, e, loc_in) ->
let loc_in = sub.location sub loc_in in
let_ ~loc ~loc_in ~attrs (sub.value_bindings sub lbs)
(sub.expr sub e)
| Pexp_function (ps, c, b) ->
function_ ~loc ~attrs
(List.map (map_function_param sub) ps)
(map_opt (map_constraint sub) c)
(map_function_body sub b)
| Pexp_apply (e, l) ->
apply ~loc ~attrs
(sub.expr sub e)
(List.map (map_tuple (sub.arg_label sub) (sub.expr sub)) l)
| Pexp_match (e, pel) ->
match_ ~loc ~attrs (sub.expr sub e) (sub.cases sub pel)
| Pexp_try (e, pel) -> try_ ~loc ~attrs (sub.expr sub e) (sub.cases sub pel)
| Pexp_tuple el -> tuple ~loc ~attrs (List.map (sub.expr sub) el)
| Pexp_construct (lid, arg) ->
construct ~loc ~attrs (map_loc sub lid) (map_opt (sub.expr sub) arg)
| Pexp_variant (lab, eo) ->
variant ~loc ~attrs (variant_var sub lab) (map_opt (sub.expr sub) eo)
| Pexp_record (l, eo) ->
let fields =
List.map
(map_tuple3
(map_loc sub)
(map_opt (map_constraint sub))
(map_opt (sub.expr sub)))
l
in
record ~loc ~attrs fields (map_opt (sub.expr sub) eo)
| Pexp_field (e, lid) ->
field ~loc ~attrs (sub.expr sub e) (map_loc sub lid)
| Pexp_setfield (e1, lid, e2) ->
setfield ~loc ~attrs (sub.expr sub e1) (map_loc sub lid)
(sub.expr sub e2)
| Pexp_array el -> array ~loc ~attrs (List.map (sub.expr sub) el)
| Pexp_list el -> list ~loc ~attrs (List.map (sub.expr sub) el)
| Pexp_ifthenelse (eN, e2) ->
let map_else (exp, loc_else) =
sub.expr sub exp, sub.location sub loc_else
in
ifthenelse ~loc ~attrs (List.map (map_if_branch sub) eN)
(map_opt map_else e2)
| Pexp_sequence (e1, e2) ->
sequence ~loc ~attrs (sub.expr sub e1) (sub.expr sub e2)
| Pexp_while (e1, e2) ->
while_ ~loc ~attrs (sub.expr sub e1) (sub.expr sub e2)
| Pexp_for (p, e1, e2, d, e3) ->
for_ ~loc ~attrs (sub.pat sub p) (sub.expr sub e1) (sub.expr sub e2) d
(sub.expr sub e3)
| Pexp_coerce (e, t1, t2) ->
coerce ~loc ~attrs (sub.expr sub e) (map_opt (sub.typ sub) t1)
(sub.typ sub t2)
| Pexp_constraint (e, t) ->
constraint_ ~loc ~attrs (sub.expr sub e) (sub.typ sub t)
| Pexp_send (e, s) ->
send ~loc ~attrs (sub.expr sub e) (map_loc sub s)
| Pexp_new lid -> new_ ~loc ~attrs (map_loc sub lid)
| Pexp_setinstvar (s, e) ->
setinstvar ~loc ~attrs (map_loc sub s) (sub.expr sub e)
| Pexp_indexop_access {pia_lhs; pia_kind; pia_paren; pia_rhs} ->
let pia_kind =
match pia_kind with
| Builtin idx -> Builtin (sub.expr sub idx)
| Dotop (path, op, idx) ->
Dotop(map_opt (map_loc sub) path, op, List.map (sub.expr sub) idx)
in
indexop_access ~loc ~attrs (sub.expr sub pia_lhs) pia_kind pia_paren
(map_opt (sub.expr sub) pia_rhs)
| Pexp_override sel ->
override ~loc ~attrs
(List.map (map_tuple (map_loc sub) (sub.expr sub)) sel)
| Pexp_letmodule (s, args, me, e) ->
letmodule ~loc ~attrs (map_loc sub s)
(List.map (map_functor_param sub) args)
(sub.module_expr sub me)
(sub.expr sub e)
| Pexp_letexception (cd, e) ->
letexception ~loc ~attrs
(sub.extension_constructor sub cd)
(sub.expr sub e)
| Pexp_assert e -> assert_ ~loc ~attrs (sub.expr sub e)
| Pexp_lazy e -> lazy_ ~loc ~attrs (sub.expr sub e)
| Pexp_object cls -> object_ ~loc ~attrs (sub.class_structure sub cls)
| Pexp_pack (me, pt) ->
pack ~loc ~attrs
(sub.module_expr sub me)
(map_opt (map_package_type sub) pt)
| Pexp_open (o, e) -> open_ ~loc ~attrs (map_loc sub o) (sub.expr sub e)
| Pexp_letopen (o, e) ->
letopen ~loc ~attrs (sub.open_declaration sub o) (sub.expr sub e)
| Pexp_letop {let_; ands; body; loc_in} ->
letop ~loc ~attrs ~loc_in (sub.binding_op sub let_)
(List.map (sub.binding_op sub) ands) (sub.expr sub body)
| Pexp_extension x -> extension ~loc ~attrs (sub.extension sub x)
| Pexp_unreachable -> unreachable ~loc ~attrs ()
| Pexp_hole -> hole ~loc ~attrs ()
| Pexp_beginend e -> beginend ~loc ~attrs (sub.expr sub e)
| Pexp_parens e -> parens ~loc ~attrs (sub.expr sub e)
| Pexp_cons l -> cons ~loc ~attrs (List.map (sub.expr sub) l)
| Pexp_prefix (op, e) ->
prefix ~loc ~attrs (map_loc sub op) (sub.expr sub e)
| Pexp_infix (op, e1, e2) ->
infix ~loc ~attrs (map_loc sub op) (sub.expr sub e1) (sub.expr sub e2)
let map_binding_op sub {pbop_op; pbop_pat; pbop_args; pbop_typ; pbop_exp; pbop_is_pun; pbop_loc} =
let open Exp in
let op = map_loc sub pbop_op in
let pat = sub.pat sub pbop_pat in
let args = List.map (FP.map sub FP.map_expr) pbop_args in
let typ = map_opt (map_value_constraint sub) pbop_typ in
let exp = sub.expr sub pbop_exp in
let loc = sub.location sub pbop_loc in
binding_op op pat args typ exp pbop_is_pun loc
end
module PVB = struct
let map_value_bindings sub { pvbs_bindings; pvbs_rec } =
let pvbs_bindings = List.map (sub.value_binding sub) pvbs_bindings in
{ pvbs_bindings; pvbs_rec }
end
module P = struct
let map sub {ppat_desc = desc; ppat_loc = loc; ppat_attributes = attrs} =
let open Pat in
let loc = sub.location sub loc in
let attrs = sub.attributes sub attrs in
match desc with
| Ppat_any -> any ~loc ~attrs ()
| Ppat_var s -> var ~loc ~attrs (map_loc sub s)
| Ppat_alias (p, s) -> alias ~loc ~attrs (sub.pat sub p) (map_loc sub s)
| Ppat_constant c -> constant ~loc ~attrs (sub.constant sub c)
| Ppat_interval (c1, c2) ->
interval ~loc ~attrs (sub.constant sub c1) (sub.constant sub c2)
| Ppat_tuple pl -> tuple ~loc ~attrs (List.map (sub.pat sub) pl)
| Ppat_construct (l, p) ->
construct ~loc ~attrs (map_loc sub l)
(map_opt
(fun (vl, p) -> List.map (map_loc sub) vl, sub.pat sub p)
p)
| Ppat_variant (l, p) ->
variant ~loc ~attrs (variant_var sub l) (map_opt (sub.pat sub) p)
| Ppat_record (lpl, cf) ->
let fields =
List.map
(map_tuple3
(map_loc sub)
(map_opt (sub.typ sub))
(map_opt (sub.pat sub)))
lpl
in
record ~loc ~attrs fields (Flag.map_obj_closed sub cf)
| Ppat_array pl -> array ~loc ~attrs (List.map (sub.pat sub) pl)
| Ppat_list pl -> list ~loc ~attrs (List.map (sub.pat sub) pl)
| Ppat_or pl -> or_ ~loc ~attrs (List.map (sub.pat sub) pl)
| Ppat_constraint (p, t) ->
constraint_ ~loc ~attrs (sub.pat sub p) (sub.typ sub t)
| Ppat_type s -> type_ ~loc ~attrs (map_loc sub s)
| Ppat_lazy p -> lazy_ ~loc ~attrs (sub.pat sub p)
| Ppat_unpack (s, pt) ->
unpack ~loc ~attrs (map_loc sub s) (map_opt (map_package_type sub) pt)
| Ppat_open (lid,p) -> open_ ~loc ~attrs (map_loc sub lid) (sub.pat sub p)
| Ppat_exception p -> exception_ ~loc ~attrs (sub.pat sub p)
| Ppat_effect(p1, p2) ->
effect_ ~loc ~attrs (sub.pat sub p1) (sub.pat sub p2)
| Ppat_extension x -> extension ~loc ~attrs (sub.extension sub x)
| Ppat_cons pl -> cons ~loc ~attrs (List.map (sub.pat sub) pl)
end
module CE = struct
let map sub {pcl_loc = loc; pcl_desc = desc; pcl_attributes = attrs} =
let open Cl in
let loc = sub.location sub loc in
let attrs = sub.attributes sub attrs in
match desc with
| Pcl_constr (lid, tys) ->
constr ~loc ~attrs (map_loc sub lid) (List.map (sub.typ sub) tys)
| Pcl_structure s ->
structure ~loc ~attrs (sub.class_structure sub s)
| Pcl_fun (p, ce) ->
fun_ ~loc ~attrs
(List.map (FP.map sub FP.map_class) p)
(sub.class_expr sub ce)
| Pcl_apply (ce, l) ->
apply ~loc ~attrs (sub.class_expr sub ce)
(List.map (map_tuple (sub.arg_label sub) (sub.expr sub)) l)
| Pcl_let (lbs, ce, loc_in) ->
let loc_in = sub.location sub loc_in in
let_ ~loc ~attrs ~loc_in (sub.value_bindings sub lbs)
(sub.class_expr sub ce)
| Pcl_constraint (ce, ct) ->
constraint_ ~loc ~attrs (sub.class_expr sub ce) (sub.class_type sub ct)
| Pcl_extension x -> extension ~loc ~attrs (sub.extension sub x)
| Pcl_open (o, ce) ->
open_ ~loc ~attrs (sub.open_description sub o) (sub.class_expr sub ce)
let map_value_kind sub = function
| Cfk_concrete (o, tc, e) ->
let tc = map_opt (E.map_constraint sub) tc in
Cfk_concrete (o, tc, sub.expr sub e)
| Cfk_virtual t -> Cfk_virtual (sub.typ sub t)
let map_method_kind sub = function
| Cfk_concrete (o, (args, t), e) ->
let args = List.map (FP.map sub FP.map_expr) args in
let t = map_opt (map_value_constraint sub) t in
Cfk_concrete (o, (args, t), sub.expr sub e)
| Cfk_virtual t -> Cfk_virtual (sub.typ sub t)
let map_field sub {pcf_desc = desc; pcf_loc = loc; pcf_attributes = attrs} =
let open Cf in
let loc = sub.location sub loc in
let attrs = sub.attributes sub attrs in
match desc with
| Pcf_inherit (o, ce, s) ->
inherit_ ~loc ~attrs o (sub.class_expr sub ce)
(map_opt (map_loc sub) s)
| Pcf_val (s, mv, k) ->
val_ ~loc ~attrs (map_loc sub s) (Flag.map_mutable_virtual sub mv)
(map_value_kind sub k)
| Pcf_method (s, pv, k) ->
method_ ~loc ~attrs (map_loc sub s) (Flag.map_private_virtual sub pv)
(map_method_kind sub k)
| Pcf_constraint (t1, t2) ->
constraint_ ~loc ~attrs (sub.typ sub t1) (sub.typ sub t2)
| Pcf_initializer e -> initializer_ ~loc ~attrs (sub.expr sub e)
| Pcf_attribute x -> attribute ~loc (sub.attribute sub x)
| Pcf_extension x -> extension ~loc ~attrs (sub.extension sub x)
let map_structure sub {pcstr_self; pcstr_fields} =
{
pcstr_self = map_opt (sub.pat sub) pcstr_self;
pcstr_fields = List.map (sub.class_field sub) pcstr_fields;
}
let class_infos sub f {pci_virt; pci_params = pl; pci_name; pci_expr;
pci_loc; pci_attributes; pci_args; pci_constraint} =
let loc = sub.location sub pci_loc in
let attrs = sub.ext_attrs sub pci_attributes in
Ci.mk ~loc ~attrs
~virt:(Flag.map_virtual sub pci_virt)
~params:(List.map (map_fst (sub.typ sub)) pl)
~args:(List.map (FP.map sub FP.map_class) pci_args)
?constraint_:(map_opt (sub.class_type sub) pci_constraint)
(map_loc sub pci_name)
(f pci_expr)
end
let default_mapper =
{
arg_label = map_arg_label;
constant = C.map;
structure = (fun this l -> List.map (this.structure_item this) l);
structure_item = M.map_structure_item;
module_expr = M.map;
signature = (fun this l -> List.map (this.signature_item this) l);
signature_item = MT.map_signature_item;
module_type = MT.map;
with_constraint = MT.map_with_constraint;
class_declaration =
(fun this -> CE.class_infos this (this.class_expr this));
class_expr = CE.map;
class_field = CE.map_field;
class_structure = CE.map_structure;
class_type = CT.map;
class_type_field = CT.map_field;
class_signature = CT.map_signature;
class_type_declaration =
(fun this -> CE.class_infos this (this.class_type this));
class_description =
(fun this -> CE.class_infos this (this.class_type this));
type_declaration = T.map_type_declaration;
type_kind = T.map_type_kind;
typ = T.map;
type_extension = T.map_type_extension;
type_exception = T.map_type_exception;
extension_constructor = T.map_extension_constructor;
value_description =
(fun this {pval_name; pval_type; pval_prim; pval_loc;
pval_attributes} ->
Val.mk
(map_loc this pval_name)
(this.typ this pval_type)
~attrs:(this.ext_attrs this pval_attributes)
~loc:(this.location this pval_loc)
~prim:(List.map (map_loc this) pval_prim)
);
pat = P.map;
expr = E.map;
binding_op = E.map_binding_op;
module_declaration =
(fun this {pmd_name; pmd_args; pmd_type; pmd_ext_attrs; pmd_loc} ->
Md.mk
(map_loc this pmd_name)
(List.map (map_functor_param this) pmd_args)
(this.module_type this pmd_type)
~attrs:(this.ext_attrs this pmd_ext_attrs)
~loc:(this.location this pmd_loc)
);
module_substitution =
(fun this
{ pms_name; pms_manifest; pms_ext_attrs;
pms_loc } ->
Ms.mk
(map_loc this pms_name)
(map_loc this pms_manifest)
~attrs:(this.ext_attrs this pms_ext_attrs)
~loc:(this.location this pms_loc)
);
module_type_declaration =
(fun this {pmtd_name; pmtd_type; pmtd_ext_attrs; pmtd_loc} ->
Mtd.mk
(map_loc this pmtd_name)
?typ:(map_opt (this.module_type this) pmtd_type)
~attrs:(this.ext_attrs this pmtd_ext_attrs)
~loc:(this.location this pmtd_loc)
);
module_binding =
(fun this {pmb_name; pmb_args; pmb_expr; pmb_ext_attrs; pmb_loc} ->
Mb.mk (map_loc this pmb_name)
(List.map (map_functor_param this) pmb_args)
(this.module_expr this pmb_expr)
~attrs:(this.ext_attrs this pmb_ext_attrs)
~loc:(this.location this pmb_loc)
);
open_declaration =
(fun this {popen_expr; popen_override; popen_attributes; popen_loc} ->
Opn.mk (this.module_expr this popen_expr)
~override:popen_override
~loc:(this.location this popen_loc)
~attrs:(this.ext_attrs this popen_attributes)
);
open_description =
(fun this {popen_expr; popen_override; popen_attributes; popen_loc} ->
Opn.mk (map_loc this popen_expr)
~override:popen_override
~loc:(this.location this popen_loc)
~attrs:(this.ext_attrs this popen_attributes)
);
include_description =
(fun this {pincl_mod; pincl_attributes; pincl_loc} ->
Incl.mk (this.module_type this pincl_mod)
~loc:(this.location this pincl_loc)
~attrs:(this.ext_attrs this pincl_attributes)
);
include_declaration =
(fun this {pincl_mod; pincl_attributes; pincl_loc} ->
Incl.mk (this.module_expr this pincl_mod)
~loc:(this.location this pincl_loc)
~attrs:(this.ext_attrs this pincl_attributes)
);
value_binding =
(fun this {pvb_pat; pvb_args; pvb_body; pvb_constraint; pvb_is_pun; pvb_attributes; pvb_loc} ->
Vb.mk
(this.pat this pvb_pat)
(List.map (FP.map this FP.map_expr) pvb_args)
(E.map_function_body this pvb_body)
?value_constraint:(Option.map (map_value_constraint this) pvb_constraint)
~is_pun:pvb_is_pun
~loc:(this.location this pvb_loc)
~attrs:(this.ext_attrs this pvb_attributes)
);
value_bindings = PVB.map_value_bindings;
constructor_declaration =
(fun this {pcd_name; pcd_vars; pcd_args;
pcd_res; pcd_loc; pcd_attributes} ->
Type.constructor
(map_loc this pcd_name)
~vars:(List.map (map_loc this) pcd_vars)
~args:(T.map_constructor_arguments this pcd_args)
?res:(map_opt (this.typ this) pcd_res)
~loc:(this.location this pcd_loc)
~attrs:(this.attributes this pcd_attributes)
);
label_declaration =
(fun this {pld_name; pld_type; pld_loc; pld_mutable; pld_attributes} ->
Type.field
(map_loc this pld_name)
(this.typ this pld_type)
~mut:(Flag.map_mutable this pld_mutable)
~loc:(this.location this pld_loc)
~attrs:(this.attributes this pld_attributes)
);
cases = (fun this l -> List.map (this.case this) l);
case =
(fun this {pc_lhs; pc_guard; pc_rhs} ->
{
pc_lhs = this.pat this pc_lhs;
pc_guard = map_opt (this.expr this) pc_guard;
pc_rhs = this.expr this pc_rhs;
}
);
location = (fun _this l -> l);
extension = (fun this (s, e) -> (map_loc this s, this.payload this e));
attribute = (fun this a ->
{
attr_name = map_loc this a.attr_name;
attr_payload = this.payload this a.attr_payload;
attr_loc = this.location this a.attr_loc
}
);
attributes = (fun this l -> List.map (this.attribute this) l);
ext_attrs = (fun this e ->
{
attrs_extension = map_opt (map_loc this) e.attrs_extension;
attrs_before = this.attributes this e.attrs_before;
attrs_after = this.attributes this e.attrs_after;
});
payload =
(fun this -> function
| PStr x -> PStr (this.structure this x)
| PSig x -> PSig (this.signature this x)
| PTyp x -> PTyp (this.typ this x)
| PPat (x, g) -> PPat (this.pat this x, map_opt (this.expr this) g)
);
directive_argument =
(fun this a ->
{ pdira_desc= a.pdira_desc
; pdira_loc= this.location this a.pdira_loc} );
toplevel_directive =
(fun this d ->
{ pdir_name= map_loc this d.pdir_name
; pdir_arg= map_opt (this.directive_argument this) d.pdir_arg
; pdir_loc= this.location this d.pdir_loc } );
toplevel_phrase =
(fun this -> function
| Ptop_def s -> Ptop_def (this.structure this s)
| Ptop_dir d -> Ptop_dir (this.toplevel_directive this d) );
repl_phrase =
(fun this p ->
{ prepl_phrase= this.toplevel_phrase this p.prepl_phrase
; prepl_output= p.prepl_output } );
}