-
Notifications
You must be signed in to change notification settings - Fork 482
Expand file tree
/
Copy pathtast_mapper.ml
More file actions
445 lines (408 loc) · 16.6 KB
/
tast_mapper.ml
File metadata and controls
445 lines (408 loc) · 16.6 KB
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
(**************************************************************************)
(* *)
(* OCaml *)
(* *)
(* Alain Frisch, LexiFi *)
(* *)
(* Copyright 2015 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 Typedtree
(* TODO: add 'methods' for location, attribute, extension,
open_description, include_declaration, include_description *)
type mapper = {
case: mapper -> case -> case;
cases: mapper -> case list -> case list;
env: mapper -> Env.t -> Env.t;
expr: mapper -> expression -> expression;
extension_constructor:
mapper -> extension_constructor -> extension_constructor;
module_binding: mapper -> module_binding -> module_binding;
module_coercion: mapper -> module_coercion -> module_coercion;
module_declaration: mapper -> module_declaration -> module_declaration;
module_expr: mapper -> module_expr -> module_expr;
module_type: mapper -> module_type -> module_type;
module_type_declaration:
mapper -> module_type_declaration -> module_type_declaration;
package_type: mapper -> package_type -> package_type;
pat: mapper -> pattern -> pattern;
row_field: mapper -> row_field -> row_field;
object_field: mapper -> object_field -> object_field;
signature: mapper -> signature -> signature;
signature_item: mapper -> signature_item -> signature_item;
structure: mapper -> structure -> structure;
structure_item: mapper -> structure_item -> structure_item;
typ: mapper -> core_type -> core_type;
type_declaration: mapper -> type_declaration -> type_declaration;
type_declarations:
mapper ->
rec_flag * type_declaration list ->
rec_flag * type_declaration list;
type_extension: mapper -> type_extension -> type_extension;
type_kind: mapper -> type_kind -> type_kind;
value_binding: mapper -> value_binding -> value_binding;
value_bindings:
mapper -> rec_flag * value_binding list -> rec_flag * value_binding list;
value_description: mapper -> value_description -> value_description;
with_constraint: mapper -> with_constraint -> with_constraint;
}
let id x = x
let tuple2 f1 f2 (x, y) = (f1 x, f2 y)
let tuple3 f1 f2 f3 (x, y, z) = (f1 x, f2 y, f3 z)
let tuple4 f1 f2 f3 f4 (x, y, z, w) = (f1 x, f2 y, f3 z, f4 w)
let opt f = function
| None -> None
| Some x -> Some (f x)
let structure sub {str_items; str_type; str_final_env} =
{
str_items = List.map (sub.structure_item sub) str_items;
str_final_env = sub.env sub str_final_env;
str_type;
}
let module_type_declaration sub x =
let mtd_type = opt (sub.module_type sub) x.mtd_type in
{x with mtd_type}
let module_declaration sub x =
let md_type = sub.module_type sub x.md_type in
{x with md_type}
let include_infos f x = {x with incl_mod = f x.incl_mod}
let structure_item sub {str_desc; str_loc; str_env} =
let str_env = sub.env sub str_env in
let str_desc =
match str_desc with
| Tstr_eval (exp, attrs) -> Tstr_eval (sub.expr sub exp, attrs)
| Tstr_value (rec_flag, list) ->
let rec_flag, list = sub.value_bindings sub (rec_flag, list) in
Tstr_value (rec_flag, list)
| Tstr_primitive v -> Tstr_primitive (sub.value_description sub v)
| Tstr_type (rec_flag, list) ->
let rec_flag, list = sub.type_declarations sub (rec_flag, list) in
Tstr_type (rec_flag, list)
| Tstr_typext te -> Tstr_typext (sub.type_extension sub te)
| Tstr_exception ext -> Tstr_exception (sub.extension_constructor sub ext)
| Tstr_module mb -> Tstr_module (sub.module_binding sub mb)
| Tstr_recmodule list ->
Tstr_recmodule (List.map (sub.module_binding sub) list)
| Tstr_modtype x -> Tstr_modtype (sub.module_type_declaration sub x)
| Tstr_include incl ->
Tstr_include (include_infos (sub.module_expr sub) incl)
| (Tstr_open _ | Tstr_attribute _) as d -> d
in
{str_desc; str_env; str_loc}
let value_description sub x =
let val_desc = sub.typ sub x.val_desc in
{x with val_desc}
let label_decl sub x =
let ld_type = sub.typ sub x.ld_type in
{x with ld_type}
let constructor_args sub = function
| Cstr_tuple l -> Cstr_tuple (List.map (sub.typ sub) l)
| Cstr_record l -> Cstr_record (List.map (label_decl sub) l)
let constructor_decl sub cd =
let cd_args = constructor_args sub cd.cd_args in
let cd_res = opt (sub.typ sub) cd.cd_res in
{cd with cd_args; cd_res}
let type_kind sub = function
| Ttype_abstract -> Ttype_abstract
| Ttype_variant list -> Ttype_variant (List.map (constructor_decl sub) list)
| Ttype_record list -> Ttype_record (List.map (label_decl sub) list)
| Ttype_open -> Ttype_open
let type_declaration sub x =
let typ_cstrs =
List.map (tuple3 (sub.typ sub) (sub.typ sub) id) x.typ_cstrs
in
let typ_kind = sub.type_kind sub x.typ_kind in
let typ_manifest = opt (sub.typ sub) x.typ_manifest in
let typ_params = List.map (tuple2 (sub.typ sub) id) x.typ_params in
{x with typ_cstrs; typ_kind; typ_manifest; typ_params}
let type_declarations sub (rec_flag, list) =
(rec_flag, List.map (sub.type_declaration sub) list)
let type_extension sub x =
let tyext_params = List.map (tuple2 (sub.typ sub) id) x.tyext_params in
let tyext_constructors =
List.map (sub.extension_constructor sub) x.tyext_constructors
in
{x with tyext_constructors; tyext_params}
let extension_constructor sub x =
let ext_kind =
match x.ext_kind with
| Text_decl (ctl, cto) ->
Text_decl (constructor_args sub ctl, opt (sub.typ sub) cto)
| Text_rebind _ as d -> d
in
{x with ext_kind}
let pat sub x =
let extra = function
| (Tpat_type _ | Tpat_unpack) as d -> d
| Tpat_open (path, loc, env) -> Tpat_open (path, loc, sub.env sub env)
| Tpat_constraint ct -> Tpat_constraint (sub.typ sub ct)
in
let pat_env = sub.env sub x.pat_env in
let pat_extra = List.map (tuple3 extra id id) x.pat_extra in
let pat_desc =
match x.pat_desc with
| (Tpat_any | Tpat_var _ | Tpat_constant _) as d -> d
| Tpat_tuple l -> Tpat_tuple (List.map (sub.pat sub) l)
| Tpat_construct (loc, cd, l) ->
Tpat_construct (loc, cd, List.map (sub.pat sub) l)
| Tpat_variant (l, po, rd) -> Tpat_variant (l, opt (sub.pat sub) po, rd)
| Tpat_record (l, closed) ->
Tpat_record (List.map (tuple4 id id (sub.pat sub) id) l, closed)
| Tpat_array l -> Tpat_array (List.map (sub.pat sub) l)
| Tpat_or (p1, p2, rd) -> Tpat_or (sub.pat sub p1, sub.pat sub p2, rd)
| Tpat_alias (p, id, s) -> Tpat_alias (sub.pat sub p, id, s)
in
{x with pat_extra; pat_desc; pat_env}
let expr sub x =
let extra = function
| Texp_constraint cty -> Texp_constraint (sub.typ sub cty)
| Texp_coerce cty2 -> Texp_coerce (sub.typ sub cty2)
| Texp_open (ovf, path, loc, env) ->
Texp_open (ovf, path, loc, sub.env sub env)
| Texp_newtype _ as d -> d
in
let exp_extra = List.map (tuple3 extra id id) x.exp_extra in
let exp_env = sub.env sub x.exp_env in
let exp_desc =
match x.exp_desc with
| (Texp_ident _ | Texp_constant _) as d -> d
| Texp_let (rec_flag, list, exp) ->
let rec_flag, list = sub.value_bindings sub (rec_flag, list) in
Texp_let (rec_flag, list, sub.expr sub exp)
| Texp_function {arg_label; arity; param; case; partial; async} ->
Texp_function
{arg_label; arity; param; case = sub.case sub case; partial; async}
| Texp_apply {funct = exp; args = list; partial; transformed_jsx} ->
Texp_apply
{
funct = sub.expr sub exp;
args = List.map (tuple2 id (opt (sub.expr sub))) list;
partial;
transformed_jsx;
}
| Texp_match (exp, cases, exn_cases, p) ->
Texp_match
(sub.expr sub exp, sub.cases sub cases, sub.cases sub exn_cases, p)
| Texp_try (exp, cases) -> Texp_try (sub.expr sub exp, sub.cases sub cases)
| Texp_tuple list -> Texp_tuple (List.map (sub.expr sub) list)
| Texp_construct (lid, cd, args) ->
Texp_construct (lid, cd, List.map (sub.expr sub) args)
| Texp_variant (l, expo) -> Texp_variant (l, opt (sub.expr sub) expo)
| Texp_record {fields; representation; extended_expression} ->
let fields =
Array.map
(function
| label, Kept t, o -> (label, Kept t, o)
| label, Overridden (lid, exp), o ->
(label, Overridden (lid, sub.expr sub exp), o))
fields
in
Texp_record
{
fields;
representation;
extended_expression = opt (sub.expr sub) extended_expression;
}
| Texp_field (exp, lid, ld) -> Texp_field (sub.expr sub exp, lid, ld)
| Texp_setfield (exp1, lid, ld, exp2) ->
Texp_setfield (sub.expr sub exp1, lid, ld, sub.expr sub exp2)
| Texp_index (exp1, exp2) ->
(* Use let bindings to ensure left-to-right evaluation order *)
let exp1 = sub.expr sub exp1 in
let exp2 = sub.expr sub exp2 in
Texp_index (exp1, exp2)
| Texp_setindex (exp1, exp2, exp3) ->
let exp1 = sub.expr sub exp1 in
let exp2 = sub.expr sub exp2 in
let exp3 = sub.expr sub exp3 in
Texp_setindex (exp1, exp2, exp3)
| Texp_array list -> Texp_array (List.map (sub.expr sub) list)
| Texp_ifthenelse (exp1, exp2, expo) ->
Texp_ifthenelse
(sub.expr sub exp1, sub.expr sub exp2, opt (sub.expr sub) expo)
| Texp_sequence (exp1, exp2) ->
Texp_sequence (sub.expr sub exp1, sub.expr sub exp2)
| Texp_while (exp1, exp2) ->
Texp_while (sub.expr sub exp1, sub.expr sub exp2)
| Texp_for (id, p, exp1, exp2, dir, exp3) ->
Texp_for
(id, p, sub.expr sub exp1, sub.expr sub exp2, dir, sub.expr sub exp3)
| Texp_send (exp, meth, expo) ->
Texp_send (sub.expr sub exp, meth, opt (sub.expr sub) expo)
| Texp_letmodule (id, s, mexpr, exp) ->
Texp_letmodule (id, s, sub.module_expr sub mexpr, sub.expr sub exp)
| Texp_letexception (cd, exp) ->
Texp_letexception (sub.extension_constructor sub cd, sub.expr sub exp)
| Texp_assert exp -> Texp_assert (sub.expr sub exp)
| Texp_pack mexpr -> Texp_pack (sub.module_expr sub mexpr)
| Texp_extension_constructor _ as e -> e
in
{x with exp_extra; exp_desc; exp_env}
let package_type sub x =
let pack_fields = List.map (tuple2 id (sub.typ sub)) x.pack_fields in
{x with pack_fields}
let signature sub x =
let sig_final_env = sub.env sub x.sig_final_env in
let sig_items = List.map (sub.signature_item sub) x.sig_items in
{x with sig_items; sig_final_env}
let signature_item sub x =
let sig_env = sub.env sub x.sig_env in
let sig_desc =
match x.sig_desc with
| Tsig_value v -> Tsig_value (sub.value_description sub v)
| Tsig_type (rec_flag, list) ->
let rec_flag, list = sub.type_declarations sub (rec_flag, list) in
Tsig_type (rec_flag, list)
| Tsig_typext te -> Tsig_typext (sub.type_extension sub te)
| Tsig_exception ext -> Tsig_exception (sub.extension_constructor sub ext)
| Tsig_module x -> Tsig_module (sub.module_declaration sub x)
| Tsig_recmodule list ->
Tsig_recmodule (List.map (sub.module_declaration sub) list)
| Tsig_modtype x -> Tsig_modtype (sub.module_type_declaration sub x)
| Tsig_include incl ->
Tsig_include (include_infos (sub.module_type sub) incl)
| (Tsig_open _ | Tsig_attribute _) as d -> d
in
{x with sig_desc; sig_env}
let module_type sub x =
let mty_env = sub.env sub x.mty_env in
let mty_desc =
match x.mty_desc with
| (Tmty_ident _ | Tmty_alias _) as d -> d
| Tmty_signature sg -> Tmty_signature (sub.signature sub sg)
| Tmty_functor (id, s, mtype1, mtype2) ->
Tmty_functor
(id, s, opt (sub.module_type sub) mtype1, sub.module_type sub mtype2)
| Tmty_with (mtype, list) ->
Tmty_with
( sub.module_type sub mtype,
List.map (tuple3 id id (sub.with_constraint sub)) list )
| Tmty_typeof mexpr -> Tmty_typeof (sub.module_expr sub mexpr)
in
{x with mty_desc; mty_env}
let with_constraint sub = function
| Twith_type decl -> Twith_type (sub.type_declaration sub decl)
| Twith_typesubst decl -> Twith_typesubst (sub.type_declaration sub decl)
| (Twith_module _ | Twith_modsubst _) as d -> d
let module_coercion sub = function
| Tcoerce_none -> Tcoerce_none
| Tcoerce_functor (c1, c2) ->
Tcoerce_functor (sub.module_coercion sub c1, sub.module_coercion sub c2)
| Tcoerce_alias (p, c1) -> Tcoerce_alias (p, sub.module_coercion sub c1)
| Tcoerce_structure (l1, l2, runtime_fields) ->
let l1' = List.map (fun (i, c) -> (i, sub.module_coercion sub c)) l1 in
let l2' =
List.map (fun (id, i, c) -> (id, i, sub.module_coercion sub c)) l2
in
Tcoerce_structure (l1', l2', runtime_fields)
| Tcoerce_primitive pc ->
Tcoerce_primitive {pc with pc_env = sub.env sub pc.pc_env}
let module_expr sub x =
let mod_env = sub.env sub x.mod_env in
let mod_desc =
match x.mod_desc with
| Tmod_ident _ as d -> d
| Tmod_structure st -> Tmod_structure (sub.structure sub st)
| Tmod_functor (id, s, mtype, mexpr) ->
Tmod_functor
(id, s, opt (sub.module_type sub) mtype, sub.module_expr sub mexpr)
| Tmod_apply (mexp1, mexp2, c) ->
Tmod_apply
( sub.module_expr sub mexp1,
sub.module_expr sub mexp2,
sub.module_coercion sub c )
| Tmod_constraint (mexpr, mt, Tmodtype_implicit, c) ->
Tmod_constraint
( sub.module_expr sub mexpr,
mt,
Tmodtype_implicit,
sub.module_coercion sub c )
| Tmod_constraint (mexpr, mt, Tmodtype_explicit mtype, c) ->
Tmod_constraint
( sub.module_expr sub mexpr,
mt,
Tmodtype_explicit (sub.module_type sub mtype),
sub.module_coercion sub c )
| Tmod_unpack (exp, mty) -> Tmod_unpack (sub.expr sub exp, mty)
in
{x with mod_desc; mod_env}
let module_binding sub x =
let mb_expr = sub.module_expr sub x.mb_expr in
{x with mb_expr}
let typ sub x =
let ctyp_env = sub.env sub x.ctyp_env in
let ctyp_desc =
match x.ctyp_desc with
| (Ttyp_any | Ttyp_var _) as d -> d
| Ttyp_arrow (arg, ret, arity) ->
Ttyp_arrow ({arg with typ = sub.typ sub arg.typ}, sub.typ sub ret, arity)
| Ttyp_tuple list -> Ttyp_tuple (List.map (sub.typ sub) list)
| Ttyp_constr (path, lid, list) ->
Ttyp_constr (path, lid, List.map (sub.typ sub) list)
| Ttyp_object (list, closed) ->
Ttyp_object (List.map (sub.object_field sub) list, closed)
| Ttyp_alias (ct, s) -> Ttyp_alias (sub.typ sub ct, s)
| Ttyp_variant (list, closed, labels) ->
Ttyp_variant (List.map (sub.row_field sub) list, closed, labels)
| Ttyp_poly (sl, ct) -> Ttyp_poly (sl, sub.typ sub ct)
| Ttyp_package pack -> Ttyp_package (sub.package_type sub pack)
in
{x with ctyp_desc; ctyp_env}
let row_field sub = function
| Ttag (label, attrs, b, list) ->
Ttag (label, attrs, b, List.map (sub.typ sub) list)
| Tinherit ct -> Tinherit (sub.typ sub ct)
let object_field sub = function
| OTtag (label, attrs, ct) -> OTtag (label, attrs, sub.typ sub ct)
| OTinherit ct -> OTinherit (sub.typ sub ct)
let value_bindings sub (rec_flag, list) =
(rec_flag, List.map (sub.value_binding sub) list)
let cases sub l = List.map (sub.case sub) l
let case sub {c_lhs; c_guard; c_rhs} =
{
c_lhs = sub.pat sub c_lhs;
c_guard = opt (sub.expr sub) c_guard;
c_rhs = sub.expr sub c_rhs;
}
let value_binding sub x =
let vb_pat = sub.pat sub x.vb_pat in
let vb_expr = sub.expr sub x.vb_expr in
{x with vb_pat; vb_expr}
let env _sub x = x
let default =
{
case;
cases;
env;
expr;
extension_constructor;
module_binding;
module_coercion;
module_declaration;
module_expr;
module_type;
module_type_declaration;
package_type;
pat;
row_field;
object_field;
signature;
signature_item;
structure;
structure_item;
typ;
type_declaration;
type_declarations;
type_extension;
type_kind;
value_binding;
value_bindings;
value_description;
with_constraint;
}