Source file context_free.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
open! Import
open Common
module E = Extension
module EC = Extension.Context
module A = Attribute
module AC = Attribute.Context
module Rule = struct
module Attr_group_inline = struct
type ('a, 'b, 'c) unpacked =
{ attribute : ('b, 'c) Attribute.t
; expect : bool
; expand : (ctxt:Expansion_context.Deriver.t
-> Asttypes.rec_flag
-> 'b list
-> 'c option list
-> 'a list)
}
type ('a, 'b) t = T : ('a, 'b, _) unpacked -> ('a, 'b) t
let attr_name (T t) = Attribute.name t.attribute
let split_normal_and_expect l = List.partition l ~f:(fun (T t) -> not t.expect)
end
module Attr_inline = struct
type ('a, 'b, 'c) unpacked =
{ attribute : ('b, 'c) Attribute.t
; expect : bool
; expand : (ctxt:Expansion_context.Deriver.t
-> 'b
-> 'c
-> 'a list)
}
type ('a, 'b) t = T : ('a, 'b, _) unpacked -> ('a, 'b) t
let attr_name (T t) = Attribute.name t.attribute
let split_normal_and_expect l = List.partition l ~f:(fun (T t) -> not t.expect)
end
module Special_function = struct
type t =
{ name : string
; ident : Longident.t
; expand : Parsetree.expression -> Parsetree.expression option
}
end
module Constant_kind = struct
type t = Float | Integer
end
module Constant = struct
type t =
{ suffix : char
; kind : Constant_kind.t
; expand : Location.t -> string -> Parsetree.expression
}
end
module Field = struct
type 'a t =
| Extension : Extension.t t
| Special_function : Special_function.t t
| Constant : Constant.t t
| Attr_str_type_decl : (structure_item, type_declaration) Attr_group_inline.t t
| Attr_sig_type_decl : (signature_item, type_declaration) Attr_group_inline.t t
| Attr_str_module_type_decl : (structure_item, module_type_declaration) Attr_inline.t t
| Attr_sig_module_type_decl : (signature_item, module_type_declaration) Attr_inline.t t
| Attr_str_type_ext : (structure_item, type_extension) Attr_inline.t t
| Attr_sig_type_ext : (signature_item, type_extension) Attr_inline.t t
| Attr_str_exception : (structure_item, type_exception) Attr_inline.t t
| Attr_sig_exception : (signature_item, type_exception) Attr_inline.t t
type (_, _) equality = Eq : ('a, 'a) equality | Ne : (_, _) equality
let eq : type a b. a t -> b t -> (a, b) equality = fun a b ->
match a, b with
| Extension , Extension -> Eq
| Special_function , Special_function -> Eq
| Constant , Constant -> Eq
| Attr_str_type_decl , Attr_str_type_decl -> Eq
| Attr_sig_type_decl , Attr_sig_type_decl -> Eq
| Attr_str_type_ext , Attr_str_type_ext -> Eq
| Attr_sig_type_ext , Attr_sig_type_ext -> Eq
| Attr_str_exception , Attr_str_exception -> Eq
| Attr_sig_exception , Attr_sig_exception -> Eq
| Attr_str_module_type_decl, Attr_str_module_type_decl -> Eq
| Attr_sig_module_type_decl, Attr_sig_module_type_decl -> Eq
| _ -> Ne
end
type t = T : 'a Field.t * 'a -> t
type ('a, 'b, 'c) attr_group_inline =
('b, 'c) Attribute.t
-> (ctxt:Expansion_context.Deriver.t
-> Asttypes.rec_flag
-> 'b list
-> 'c option list
-> 'a list)
-> t
type ('a, 'b, 'c) attr_inline =
('b, 'c) Attribute.t
-> (ctxt:Expansion_context.Deriver.t
-> 'b
-> 'c
-> 'a list)
-> t
let rec filter : type a. a Field.t -> t list -> a list = fun field l ->
match l with
| [] -> []
| (T (field', x)) :: l ->
match Field.eq field field' with
| Field.Eq -> x :: filter field l
| Field.Ne -> filter field l
;;
let extension ext = T (Extension, ext)
let special_function id f =
T (Special_function, { name = id
; ident = Longident.parse id
; expand = f
})
;;
let constant kind suffix expand =
T (Constant, { suffix; kind; expand })
;;
let attr_str_type_decl attribute expand =
T (Attr_str_type_decl, T { attribute; expand; expect = false })
;;
let attr_sig_type_decl attribute expand =
T (Attr_sig_type_decl, T { attribute; expand; expect = false })
;;
let attr_str_module_type_decl attribute expand =
T (Attr_str_module_type_decl, T { attribute; expand; expect = false })
;;
let attr_sig_module_type_decl attribute expand =
T (Attr_sig_module_type_decl, T { attribute; expand; expect = false })
;;
let attr_str_type_ext attribute expand =
T (Attr_str_type_ext, T { attribute; expand; expect = false })
;;
let attr_sig_type_ext attribute expand =
T (Attr_sig_type_ext, T { attribute; expand; expect = false })
;;
let attr_str_exception attribute expand =
T (Attr_str_exception, T { attribute; expand; expect = false })
;;
let attr_sig_exception attribute expand =
T (Attr_sig_exception, T { attribute; expand; expect = false })
;;
let attr_str_type_decl_expect attribute expand =
T (Attr_str_type_decl, T { attribute; expand; expect = true })
;;
let attr_sig_type_decl_expect attribute expand =
T (Attr_sig_type_decl, T { attribute; expand; expect = true })
;;
let attr_str_module_type_decl_expect attribute expand =
T (Attr_str_module_type_decl, T { attribute; expand; expect = true })
;;
let attr_sig_module_type_decl_expect attribute expand =
T (Attr_sig_module_type_decl, T { attribute; expand; expect = true })
;;
let attr_str_type_ext_expect attribute expand =
T (Attr_str_type_ext, T { attribute; expand; expect = true })
;;
let attr_sig_type_ext_expect attribute expand =
T (Attr_sig_type_ext, T { attribute; expand; expect = true })
;;
let attr_str_exception_expect attribute expand =
T (Attr_str_exception, T { attribute; expand; expect = true })
;;
let attr_sig_exception_expect attribute expand =
T (Attr_sig_exception, T { attribute; expand; expect = true })
;;
end
module Generated_code_hook = struct
type 'a single_or_many =
| Single of 'a
| Many of 'a list
type t =
{ f : 'a. 'a Extension.Context.t -> Location.t -> 'a single_or_many -> unit }
let nop = { f = (fun _ _ _ -> ()) }
let replace t context loc x = t.f context loc x
let insert_after t context (loc : Location.t) x =
match x with
| Many [] -> ()
| _ -> t.f context { loc with loc_start = loc.loc_end } x
end
let rec map_node_rec context ts super_call loc base_ctxt x =
let ctxt = Expansion_context.Extension.make ~extension_point_loc:loc ~base:base_ctxt () in
match EC.get_extension context x with
| None -> super_call base_ctxt x
| Some (ext, attrs) ->
match E.For_context.convert ts ~ctxt ext with
| None -> super_call base_ctxt x
| Some x ->
map_node_rec context ts super_call loc base_ctxt (EC.merge_attributes context x attrs)
;;
let map_node context ts super_call loc base_ctxt x ~hook =
let ctxt = Expansion_context.Extension.make ~extension_point_loc:loc ~base:base_ctxt () in
match EC.get_extension context x with
| None -> super_call base_ctxt x
| Some (ext, attrs) ->
match E.For_context.convert ts ~ctxt ext with
| None -> super_call base_ctxt x
| Some x ->
let generated_code =
map_node_rec context ts super_call loc base_ctxt (EC.merge_attributes context x attrs)
in
Generated_code_hook.replace hook context loc (Single generated_code);
generated_code
;;
let rec map_nodes context ts super_call get_loc base_ctxt l ~hook ~in_generated_code =
match l with
| [] -> []
| x :: l ->
match EC.get_extension context x with
| None ->
let x = super_call base_ctxt x in
let l = map_nodes context ts super_call get_loc base_ctxt l ~hook ~in_generated_code in
x :: l
| Some (ext, attrs) ->
let extension_point_loc = get_loc x in
let ctxt = Expansion_context.Extension.make ~extension_point_loc ~base:base_ctxt () in
match E.For_context.convert_inline ts ~ctxt ext with
| None ->
let x = super_call base_ctxt x in
let l =
map_nodes context ts super_call get_loc base_ctxt l ~hook ~in_generated_code
in
x :: l
| Some x ->
assert_no_attributes attrs;
let generated_code =
map_nodes context ts super_call get_loc base_ctxt x ~hook
~in_generated_code:true
in
if not in_generated_code then
Generated_code_hook.replace hook context extension_point_loc (Many generated_code);
generated_code
@ map_nodes context ts super_call get_loc base_ctxt l ~hook ~in_generated_code
let map_nodes = map_nodes ~in_generated_code:false
let table_of_special_functions special_functions =
match
List.map special_functions ~f:(fun { Rule.Special_function.ident; expand; _ } ->
(ident, expand))
|> Hashtbl.of_alist ~size:(max 1024 (List.length special_functions * 2))
with
| Ok table -> table
| Error ident ->
Printf.ksprintf invalid_arg
"Context_free.V1.map_top_down: \
%s present twice in list of special functions"
(List.find_map_exn special_functions ~f:(fun r ->
if Poly.equal r.ident ident then
Some r.name
else
None))
;;
let rec get_group attr l =
match l with
| [] -> None
| x :: l ->
match Attribute.get attr x, get_group attr l with
| None , None -> None
| None , Some vals -> Some (None :: vals)
| Some value , None -> Some (Some value :: List.map l ~f:(fun _ -> None))
| Some value , Some vals -> Some (Some value :: vals)
;;
let rev_concat = function
| [] -> []
| [x] -> x
| [x; y] -> y @ x
| l -> List.concat (List.rev l)
;;
let sort_attr_group_inline l =
List.sort l ~cmp:(fun a b ->
String.compare
(Rule.Attr_group_inline.attr_name a)
(Rule.Attr_group_inline.attr_name b))
let sort_attr_inline l =
List.sort l ~cmp:(fun a b ->
String.compare
(Rule.Attr_inline.attr_name a)
(Rule.Attr_inline.attr_name b))
let handle_attr_group_inline attrs rf items ~loc ~base_ctxt =
List.fold_left attrs ~init:[]
~f:(fun acc (Rule.Attr_group_inline.T group) ->
match get_group group.attribute items with
| None -> acc
| Some values ->
let ctxt =
Expansion_context.Deriver.make ~derived_item_loc:loc
~inline:group.expect ~base:base_ctxt ()
in
let expect_items = group.expand ~ctxt rf items values in
expect_items :: acc)
let handle_attr_inline attrs item ~loc ~base_ctxt =
List.fold_left attrs ~init:[]
~f:(fun acc (Rule.Attr_inline.T a) ->
match Attribute.get a.attribute item with
| None -> acc
| Some value ->
let ctxt =
Expansion_context.Deriver.make ~derived_item_loc:loc
~inline:a.expect ~base:base_ctxt ()
in
let expect_items = a.expand ~ctxt item value in
expect_items :: acc)
module Expect_mismatch_handler = struct
type t =
{ f : 'a. 'a Attribute.Floating.Context.t -> Location.t -> 'a list -> unit }
let nop = { f = fun _ _ _ -> () }
end
class map_top_down ?(expect_mismatch_handler=Expect_mismatch_handler.nop)
?(generated_code_hook=Generated_code_hook.nop) rules =
let hook = generated_code_hook in
let special_functions =
Rule.filter Special_function rules |> table_of_special_functions
in
let constants =
Rule.filter Constant rules
|> List.map ~f:(fun (c:Rule.Constant.t) -> ((c.suffix,c.kind),c.expand))
|> Hashtbl.of_alist_exn
in
let extensions = Rule.filter Extension rules in
let class_expr = E.filter_by_context EC.class_expr extensions
and class_field = E.filter_by_context EC.class_field extensions
and class_type = E.filter_by_context EC.class_type extensions
and class_type_field = E.filter_by_context EC.class_type_field extensions
and core_type = E.filter_by_context EC.core_type extensions
and expression = E.filter_by_context EC.expression extensions
and module_expr = E.filter_by_context EC.module_expr extensions
and module_type = E.filter_by_context EC.module_type extensions
and pattern = E.filter_by_context EC.pattern extensions
and signature_item = E.filter_by_context EC.signature_item extensions
and structure_item = E.filter_by_context EC.structure_item extensions
in
let attr_str_type_decls, attr_str_type_decls_expect =
Rule.filter Attr_str_type_decl rules
|> sort_attr_group_inline
|> Rule.Attr_group_inline.split_normal_and_expect
in
let attr_sig_type_decls, attr_sig_type_decls_expect =
Rule.filter Attr_sig_type_decl rules
|> sort_attr_group_inline
|> Rule.Attr_group_inline.split_normal_and_expect
in
let attr_str_module_type_decls, attr_str_module_type_decls_expect =
Rule.filter Attr_str_module_type_decl rules
|> sort_attr_inline
|> Rule.Attr_inline.split_normal_and_expect
in
let attr_sig_module_type_decls, attr_sig_module_type_decls_expect =
Rule.filter Attr_sig_module_type_decl rules
|> sort_attr_inline
|> Rule.Attr_inline.split_normal_and_expect
in
let attr_str_type_exts, attr_str_type_exts_expect =
Rule.filter Attr_str_type_ext rules
|> sort_attr_inline
|> Rule.Attr_inline.split_normal_and_expect
in
let attr_sig_type_exts, attr_sig_type_exts_expect =
Rule.filter Attr_sig_type_ext rules
|> sort_attr_inline
|> Rule.Attr_inline.split_normal_and_expect
in
let attr_str_exceptions, attr_str_exceptions_expect =
Rule.filter Attr_str_exception rules
|> sort_attr_inline
|> Rule.Attr_inline.split_normal_and_expect
in
let attr_sig_exceptions, attr_sig_exceptions_expect =
Rule.filter Attr_sig_exception rules
|> sort_attr_inline
|> Rule.Attr_inline.split_normal_and_expect
in
let map_node = map_node ~hook in
let map_nodes = map_nodes ~hook in
object(self)
inherit Ast_traverse.map_with_expansion_context as super
method! location _ x = x
method! core_type base_ctxt x =
map_node EC.core_type core_type super#core_type x.ptyp_loc base_ctxt x
method! pattern base_ctxt x =
map_node EC.pattern pattern super#pattern x.ppat_loc base_ctxt x
method! expression base_ctxt e =
let e =
match e.pexp_desc with
| Pexp_extension _ ->
map_node EC.expression expression (fun _ e -> e) e.pexp_loc base_ctxt e
| _ -> e
in
let expand_constant kind char text =
match Hashtbl.find_opt constants (char,kind) with
| None -> super#expression base_ctxt e
| Some expand -> self#expression base_ctxt (expand e.pexp_loc text)
in
match e.pexp_desc with
| Pexp_apply ({ pexp_desc = Pexp_ident id; _ } as func, args) -> begin
match Hashtbl.find_opt special_functions id.txt with
| None ->
self#pexp_apply_without_traversing_function base_ctxt e func args
| Some pattern ->
match pattern e with
| None ->
self#pexp_apply_without_traversing_function base_ctxt e func args
| Some e ->
self#expression base_ctxt e
end
| Pexp_ident id -> begin
match Hashtbl.find_opt special_functions id.txt with
| None ->
super#expression base_ctxt e
| Some pattern ->
match pattern e with
| None ->
super#expression base_ctxt e
| Some e ->
self#expression base_ctxt e
end
| Pexp_constant (Pconst_integer (s, Some c)) -> expand_constant Integer c s
| Pexp_constant (Pconst_float (s, Some c)) -> expand_constant Float c s
| _ ->
super#expression base_ctxt e
method private pexp_apply_without_traversing_function base_ctxt e func args =
let { pexp_desc = _; pexp_loc; pexp_attributes; pexp_loc_stack; } = e in
let func =
let { pexp_desc; pexp_loc; pexp_attributes; pexp_loc_stack } = func in
let pexp_attributes = self#attributes base_ctxt pexp_attributes in
{ pexp_desc
; pexp_loc
; pexp_attributes
; pexp_loc_stack
}
in
let args = List.map args ~f:(fun (lab, exp) -> (lab, self#expression base_ctxt exp)) in
let pexp_attributes = self#attributes base_ctxt pexp_attributes in
{ pexp_loc
; pexp_attributes
; pexp_desc = Pexp_apply (func, args)
; pexp_loc_stack
}
method! class_type base_ctxt x =
map_node EC.class_type class_type super#class_type x.pcty_loc base_ctxt x
method! class_type_field base_ctxt x =
map_node EC.class_type_field class_type_field super#class_type_field
x.pctf_loc base_ctxt x
method! class_expr base_ctxt x =
map_node EC.class_expr class_expr super#class_expr x.pcl_loc base_ctxt x
method! class_field base_ctxt x =
map_node EC.class_field class_field super#class_field x.pcf_loc base_ctxt x
method! module_type base_ctxt x =
map_node EC.module_type module_type super#module_type x.pmty_loc base_ctxt x
method! module_expr base_ctxt x =
map_node EC.module_expr module_expr super#module_expr x.pmod_loc base_ctxt x
method! structure_item base_ctxt x =
map_node EC.structure_item structure_item super#structure_item x.pstr_loc base_ctxt x
method! signature_item base_ctxt x =
map_node EC.signature_item signature_item super#signature_item x.psig_loc base_ctxt x
method! class_structure base_ctxt { pcstr_self; pcstr_fields } =
let pcstr_self = self#pattern base_ctxt pcstr_self in
let pcstr_fields =
map_nodes EC.class_field class_field super#class_field
(fun x -> x.pcf_loc) base_ctxt pcstr_fields
in
{ pcstr_self; pcstr_fields }
method! class_signature base_ctxt { pcsig_self; pcsig_fields } =
let pcsig_self = self#core_type base_ctxt pcsig_self in
let pcsig_fields =
map_nodes EC.class_type_field class_type_field super#class_type_field
(fun x -> x.pctf_loc) base_ctxt pcsig_fields
in
{ pcsig_self; pcsig_fields }
method! structure base_ctxt st =
let rec with_extra_items item ~extra_items ~expect_items ~rest ~in_generated_code =
let item = super#structure_item base_ctxt item in
let extra_items = loop (rev_concat extra_items) ~in_generated_code:true in
if not in_generated_code then
Generated_code_hook.insert_after hook Structure_item item.pstr_loc
(Many extra_items);
let original_rest = rest in
let rest = loop rest ~in_generated_code in
(match expect_items with
| [] -> ()
| _ ->
let expected = rev_concat expect_items in
let pos = item.pstr_loc.loc_end in
Code_matcher.match_structure original_rest ~pos ~expected
~mismatch_handler:(fun loc repl ->
expect_mismatch_handler.f Structure_item loc repl));
item :: (extra_items @ rest)
and loop st ~in_generated_code =
match st with
| [] -> []
| item :: rest ->
let loc = item.pstr_loc in
match item.pstr_desc with
| Pstr_extension (ext, attrs) -> begin
let extension_point_loc = item.pstr_loc in
let ctxt = Expansion_context.Extension.make ~extension_point_loc ~base:base_ctxt () in
match E.For_context.convert_inline structure_item ~ctxt ext with
| None ->
let item = super#structure_item base_ctxt item in
let rest = self#structure base_ctxt rest in
item :: rest
| Some items ->
assert_no_attributes attrs;
let items = loop items ~in_generated_code:true in
if not in_generated_code then
Generated_code_hook.replace hook Structure_item item.pstr_loc
(Many items);
items @ loop rest ~in_generated_code
end
| Pstr_type(rf, tds) ->
let extra_items =
handle_attr_group_inline attr_str_type_decls rf tds ~loc ~base_ctxt
in
let expect_items =
handle_attr_group_inline attr_str_type_decls_expect rf tds ~loc ~base_ctxt
in
with_extra_items item ~extra_items ~expect_items ~rest ~in_generated_code
| Pstr_modtype mtd ->
let extra_items =
handle_attr_inline attr_str_module_type_decls mtd ~loc ~base_ctxt
in
let expect_items =
handle_attr_inline attr_str_module_type_decls_expect mtd ~loc ~base_ctxt
in
with_extra_items item ~extra_items ~expect_items ~rest ~in_generated_code
| Pstr_typext te ->
let extra_items = handle_attr_inline attr_str_type_exts te ~loc ~base_ctxt in
let expect_items =
handle_attr_inline attr_str_type_exts_expect te ~loc ~base_ctxt
in
with_extra_items item ~extra_items ~expect_items ~rest ~in_generated_code
| Pstr_exception ec ->
let extra_items = handle_attr_inline attr_str_exceptions ec ~loc ~base_ctxt in
let expect_items =
handle_attr_inline attr_str_exceptions_expect ec ~loc ~base_ctxt
in
with_extra_items item ~extra_items ~expect_items ~rest ~in_generated_code
| _ ->
let item = self#structure_item base_ctxt item in
let rest = self#structure base_ctxt rest in
item :: rest
in
loop st ~in_generated_code:false
method! signature base_ctxt sg =
let rec with_extra_items item ~extra_items ~expect_items ~rest ~in_generated_code =
let item = super#signature_item base_ctxt item in
let extra_items = loop (rev_concat extra_items) ~in_generated_code:true in
if not in_generated_code then
Generated_code_hook.insert_after hook Signature_item item.psig_loc
(Many extra_items);
let original_rest = rest in
let rest = loop rest ~in_generated_code in
(match expect_items with
| [] -> ()
| _ ->
let expected = rev_concat expect_items in
let pos = item.psig_loc.loc_end in
Code_matcher.match_signature original_rest ~pos ~expected
~mismatch_handler:(fun loc repl ->
expect_mismatch_handler.f Signature_item loc repl));
item :: (extra_items @ rest)
and loop sg ~in_generated_code =
match sg with
| [] -> []
| item :: rest ->
let loc = item.psig_loc in
match item.psig_desc with
| Psig_extension (ext, attrs) -> begin
let extension_point_loc = item.psig_loc in
let ctxt = Expansion_context.Extension.make ~extension_point_loc ~base:base_ctxt () in
match E.For_context.convert_inline signature_item ~ctxt ext with
| None ->
let item = super#signature_item base_ctxt item in
let rest = self#signature base_ctxt rest in
item :: rest
| Some items ->
assert_no_attributes attrs;
let items = loop items ~in_generated_code:true in
if not in_generated_code then
Generated_code_hook.replace hook Signature_item item.psig_loc
(Many items);
items @ loop rest ~in_generated_code
end
| Psig_type(rf, tds) ->
let extra_items =
handle_attr_group_inline attr_sig_type_decls rf tds ~loc ~base_ctxt
in
let expect_items =
handle_attr_group_inline attr_sig_type_decls_expect rf tds ~loc ~base_ctxt
in
with_extra_items item ~extra_items ~expect_items ~rest ~in_generated_code
| Psig_modtype mtd ->
let extra_items =
handle_attr_inline attr_sig_module_type_decls mtd ~loc ~base_ctxt
in
let expect_items =
handle_attr_inline attr_sig_module_type_decls_expect mtd ~loc ~base_ctxt
in
with_extra_items item ~extra_items ~expect_items ~rest ~in_generated_code
| Psig_typext te ->
let extra_items = handle_attr_inline attr_sig_type_exts te ~loc ~base_ctxt in
let expect_items =
handle_attr_inline attr_sig_type_exts_expect te ~loc ~base_ctxt
in
with_extra_items item ~extra_items ~expect_items ~rest ~in_generated_code
| Psig_exception ec ->
let extra_items = handle_attr_inline attr_sig_exceptions ec ~loc ~base_ctxt in
let expect_items =
handle_attr_inline attr_sig_exceptions_expect ec ~loc ~base_ctxt
in
with_extra_items item ~extra_items ~expect_items ~rest ~in_generated_code
| _ ->
let item = self#signature_item base_ctxt item in
let rest = self#signature base_ctxt rest in
item :: rest
in
loop sg ~in_generated_code:false
end