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
|
(***********************************************************************)
(* *)
(* OCaml *)
(* *)
(* Damien Doligez, projet Para, INRIA Rocquencourt *)
(* *)
(* Copyright 1999 Institut National de Recherche en Informatique et *)
(* en Automatique. All rights reserved. This file is distributed *)
(* under the terms of the Q Public License version 1.0. *)
(* *)
(***********************************************************************)
open Asttypes;;
open Format;;
open Lexing;;
open Location;;
open Parsetree;;
let fmt_position with_name f l =
let fname = if with_name then l.pos_fname else "" in
if l.pos_lnum = -1
then fprintf f "%s[%d]" fname l.pos_cnum
else fprintf f "%s[%d,%d+%d]" fname l.pos_lnum l.pos_bol
(l.pos_cnum - l.pos_bol)
;;
let fmt_location f loc =
let p_2nd_name = loc.loc_start.pos_fname <> loc.loc_end.pos_fname in
fprintf f "(%a..%a)" (fmt_position true) loc.loc_start
(fmt_position p_2nd_name) loc.loc_end;
if loc.loc_ghost then fprintf f " ghost";
;;
let rec fmt_longident_aux f x =
match x with
| Longident.Lident (s) -> fprintf f "%s" s;
| Longident.Ldot (y, s) -> fprintf f "%a.%s" fmt_longident_aux y s;
| Longident.Lapply (y, z) ->
fprintf f "%a(%a)" fmt_longident_aux y fmt_longident_aux z;
;;
let fmt_longident f x = fprintf f "\"%a\"" fmt_longident_aux x;;
let fmt_longident_loc f x =
fprintf f "\"%a\" %a" fmt_longident_aux x.txt fmt_location x.loc;
;;
let fmt_string_loc f x =
fprintf f "\"%s\" %a" x.txt fmt_location x.loc;
;;
let fmt_constant f x =
match x with
| Const_int (i) -> fprintf f "Const_int %d" i;
| Const_char (c) -> fprintf f "Const_char %02x" (Char.code c);
| Const_string (s) -> fprintf f "Const_string %S" s;
| Const_float (s) -> fprintf f "Const_float %s" s;
| Const_int32 (i) -> fprintf f "Const_int32 %ld" i;
| Const_int64 (i) -> fprintf f "Const_int64 %Ld" i;
| Const_nativeint (i) -> fprintf f "Const_nativeint %nd" i;
;;
let fmt_mutable_flag f x =
match x with
| Immutable -> fprintf f "Immutable";
| Mutable -> fprintf f "Mutable";
;;
let fmt_virtual_flag f x =
match x with
| Virtual -> fprintf f "Virtual";
| Concrete -> fprintf f "Concrete";
;;
let fmt_override_flag f x =
match x with
| Override -> fprintf f "Override";
| Fresh -> fprintf f "Fresh";
;;
let fmt_rec_flag f x =
match x with
| Nonrecursive -> fprintf f "Nonrec";
| Recursive -> fprintf f "Rec";
| Default -> fprintf f "Default";
;;
let fmt_direction_flag f x =
match x with
| Upto -> fprintf f "Up";
| Downto -> fprintf f "Down";
;;
let fmt_private_flag f x =
match x with
| Public -> fprintf f "Public";
| Private -> fprintf f "Private";
;;
let line i f s (*...*) =
fprintf f "%s" (String.make ((2*i) mod 72) ' ');
fprintf f s (*...*)
;;
let list i f ppf l =
match l with
| [] -> line i ppf "[]\n";
| _ :: _ ->
line i ppf "[\n";
List.iter (f (i+1) ppf) l;
line i ppf "]\n";
;;
let option i f ppf x =
match x with
| None -> line i ppf "None\n";
| Some x ->
line i ppf "Some\n";
f (i+1) ppf x;
;;
let longident_loc i ppf li = line i ppf "%a\n" fmt_longident_loc li;;
let string i ppf s = line i ppf "\"%s\"\n" s;;
let string_loc i ppf s = line i ppf "%a\n" fmt_string_loc s;;
let bool i ppf x = line i ppf "%s\n" (string_of_bool x);;
let label i ppf x = line i ppf "label=\"%s\"\n" x;;
let rec core_type i ppf x =
line i ppf "core_type %a\n" fmt_location x.ptyp_loc;
let i = i+1 in
match x.ptyp_desc with
| Ptyp_any -> line i ppf "Ptyp_any\n";
| Ptyp_var (s) -> line i ppf "Ptyp_var %s\n" s;
| Ptyp_arrow (l, ct1, ct2) ->
line i ppf "Ptyp_arrow\n";
string i ppf l;
core_type i ppf ct1;
core_type i ppf ct2;
| Ptyp_tuple l ->
line i ppf "Ptyp_tuple\n";
list i core_type ppf l;
| Ptyp_constr (li, l) ->
line i ppf "Ptyp_constr %a\n" fmt_longident_loc li;
list i core_type ppf l;
| Ptyp_variant (l, closed, low) ->
line i ppf "Ptyp_variant closed=%s\n" (string_of_bool closed);
list i label_x_bool_x_core_type_list ppf l;
option i (fun i -> list i string) ppf low
| Ptyp_object (l) ->
line i ppf "Ptyp_object\n";
list i core_field_type ppf l;
| Ptyp_class (li, l, low) ->
line i ppf "Ptyp_class %a\n" fmt_longident_loc li;
list i core_type ppf l;
list i string ppf low
| Ptyp_alias (ct, s) ->
line i ppf "Ptyp_alias \"%s\"\n" s;
core_type i ppf ct;
| Ptyp_poly (sl, ct) ->
line i ppf "Ptyp_poly%a\n"
(fun ppf -> List.iter (fun x -> fprintf ppf " '%s" x)) sl;
core_type i ppf ct;
| Ptyp_package (s, l) ->
line i ppf "Ptyp_package %a\n" fmt_longident_loc s;
list i package_with ppf l;
and package_with i ppf (s, t) =
line i ppf "with type %a\n" fmt_longident_loc s;
core_type i ppf t
and core_field_type i ppf x =
line i ppf "core_field_type %a\n" fmt_location x.pfield_loc;
let i = i+1 in
match x.pfield_desc with
| Pfield (s, ct) ->
line i ppf "Pfield \"%s\"\n" s;
core_type i ppf ct;
| Pfield_var -> line i ppf "Pfield_var\n";
and pattern i ppf x =
line i ppf "pattern %a\n" fmt_location x.ppat_loc;
let i = i+1 in
match x.ppat_desc with
| Ppat_any -> line i ppf "Ppat_any\n";
| Ppat_var (s) -> line i ppf "Ppat_var %a\n" fmt_string_loc s;
| Ppat_alias (p, s) ->
line i ppf "Ppat_alias %a\n" fmt_string_loc s;
pattern i ppf p;
| Ppat_constant (c) -> line i ppf "Ppat_constant %a\n" fmt_constant c;
| Ppat_tuple (l) ->
line i ppf "Ppat_tuple\n";
list i pattern ppf l;
| Ppat_construct (li, po, b) ->
line i ppf "Ppat_construct %a\n" fmt_longident_loc li;
option i pattern ppf po;
bool i ppf b;
| Ppat_variant (l, po) ->
line i ppf "Ppat_variant \"%s\"\n" l;
option i pattern ppf po;
| Ppat_record (l, c) ->
line i ppf "Ppat_record\n";
list i longident_x_pattern ppf l;
| Ppat_array (l) ->
line i ppf "Ppat_array\n";
list i pattern ppf l;
| Ppat_or (p1, p2) ->
line i ppf "Ppat_or\n";
pattern i ppf p1;
pattern i ppf p2;
| Ppat_lazy p ->
line i ppf "Ppat_lazy\n";
pattern i ppf p;
| Ppat_constraint (p, ct) ->
line i ppf "Ppat_constraint\n";
pattern i ppf p;
core_type i ppf ct;
| Ppat_type (li) ->
line i ppf "Ppat_type\n";
longident_loc i ppf li
| Ppat_unpack s ->
line i ppf "Ppat_unpack %a\n" fmt_string_loc s;
and expression i ppf x =
line i ppf "expression %a\n" fmt_location x.pexp_loc;
let i = i+1 in
match x.pexp_desc with
| Pexp_ident (li) -> line i ppf "Pexp_ident %a\n" fmt_longident_loc li;
| Pexp_constant (c) -> line i ppf "Pexp_constant %a\n" fmt_constant c;
| Pexp_let (rf, l, e) ->
line i ppf "Pexp_let %a\n" fmt_rec_flag rf;
list i pattern_x_expression_def ppf l;
expression i ppf e;
| Pexp_function (p, eo, l) ->
line i ppf "Pexp_function \"%s\"\n" p;
option i expression ppf eo;
list i pattern_x_expression_case ppf l;
| Pexp_apply (e, l) ->
line i ppf "Pexp_apply\n";
expression i ppf e;
list i label_x_expression ppf l;
| Pexp_match (e, l) ->
line i ppf "Pexp_match\n";
expression i ppf e;
list i pattern_x_expression_case ppf l;
| Pexp_try (e, l) ->
line i ppf "Pexp_try\n";
expression i ppf e;
list i pattern_x_expression_case ppf l;
| Pexp_tuple (l) ->
line i ppf "Pexp_tuple\n";
list i expression ppf l;
| Pexp_construct (li, eo, b) ->
line i ppf "Pexp_construct %a\n" fmt_longident_loc li;
option i expression ppf eo;
bool i ppf b;
| Pexp_variant (l, eo) ->
line i ppf "Pexp_variant \"%s\"\n" l;
option i expression ppf eo;
| Pexp_record (l, eo) ->
line i ppf "Pexp_record\n";
list i longident_x_expression ppf l;
option i expression ppf eo;
| Pexp_field (e, li) ->
line i ppf "Pexp_field\n";
expression i ppf e;
longident_loc i ppf li;
| Pexp_setfield (e1, li, e2) ->
line i ppf "Pexp_setfield\n";
expression i ppf e1;
longident_loc i ppf li;
expression i ppf e2;
| Pexp_array (l) ->
line i ppf "Pexp_array\n";
list i expression ppf l;
| Pexp_ifthenelse (e1, e2, eo) ->
line i ppf "Pexp_ifthenelse\n";
expression i ppf e1;
expression i ppf e2;
option i expression ppf eo;
| Pexp_sequence (e1, e2) ->
line i ppf "Pexp_sequence\n";
expression i ppf e1;
expression i ppf e2;
| Pexp_while (e1, e2) ->
line i ppf "Pexp_while\n";
expression i ppf e1;
expression i ppf e2;
| Pexp_for (s, e1, e2, df, e3) ->
line i ppf "Pexp_for %a %a\n" fmt_direction_flag df fmt_string_loc s;
expression i ppf e1;
expression i ppf e2;
expression i ppf e3;
| Pexp_constraint (e, cto1, cto2) ->
line i ppf "Pexp_constraint\n";
expression i ppf e;
option i core_type ppf cto1;
option i core_type ppf cto2;
| Pexp_when (e1, e2) ->
line i ppf "Pexp_when\n";
expression i ppf e1;
expression i ppf e2;
| Pexp_send (e, s) ->
line i ppf "Pexp_send \"%s\"\n" s;
expression i ppf e;
| Pexp_new (li) -> line i ppf "Pexp_new %a\n" fmt_longident_loc li;
| Pexp_setinstvar (s, e) ->
line i ppf "Pexp_setinstvar %a\n" fmt_string_loc s;
expression i ppf e;
| Pexp_override (l) ->
line i ppf "Pexp_override\n";
list i string_x_expression ppf l;
| Pexp_letmodule (s, me, e) ->
line i ppf "Pexp_letmodule %a\n" fmt_string_loc s;
module_expr i ppf me;
expression i ppf e;
| Pexp_assert (e) ->
line i ppf "Pexp_assert\n";
expression i ppf e;
| Pexp_assertfalse ->
line i ppf "Pexp_assertfalse\n";
| Pexp_lazy (e) ->
line i ppf "Pexp_lazy\n";
expression i ppf e;
| Pexp_poly (e, cto) ->
line i ppf "Pexp_poly\n";
expression i ppf e;
option i core_type ppf cto;
| Pexp_object s ->
line i ppf "Pexp_object\n";
class_structure i ppf s
| Pexp_newtype (s, e) ->
line i ppf "Pexp_newtype \"%s\"\n" s;
expression i ppf e
| Pexp_pack me ->
line i ppf "Pexp_pack\n";
module_expr i ppf me
| Pexp_open (ovf, m, e) ->
line i ppf "Pexp_open %a \"%a\"\n" fmt_override_flag ovf
fmt_longident_loc m;
expression i ppf e
(*> JOCAML *)
| Pexp_spawn (e) ->
line i ppf "Pexp_spawn\n" ;
expression i ppf e ;
| Pexp_par (e1, e2) ->
line i ppf "Pexp_par\n";
expression i ppf e1;
expression i ppf e2;
| Pexp_reply (e, id) ->
line i ppf "Pexp_reply\n";
expression i ppf e;
string_loc i ppf id;
| Pexp_def (d,e) ->
line i ppf "Pexp_def\n";
joindefinition i ppf d;
expression i ppf e;
and joindefinition i ppf d = list i joinautomaton ppf d
and joinautomaton i ppf d =
line i ppf "joinautomaton %a\n" fmt_location d.pjauto_loc;
let i=i+1 in
list i joinclause ppf d.pjauto_desc;
and joinclause i ppf cl =
line i ppf "joinclause %a\n" fmt_location cl.pjclause_loc;
let i=i+1 in
let (jpats, e) = cl.pjclause_desc in
list i joinpattern ppf jpats;
expression i ppf e;
and joinpattern i ppf jpat =
line i ppf "joinpattern %a\n" fmt_location jpat.pjpat_loc;
let i = i+1 in
let chan,pat = jpat.pjpat_desc in
string_loc i ppf chan ;
pattern i ppf pat
(*< JOCAML *)
and value_description i ppf x =
line i ppf "value_description %a\n" fmt_location x.pval_loc;
core_type (i+1) ppf x.pval_type;
list (i+1) string ppf x.pval_prim;
and string_option_underscore i ppf =
function
| Some x ->
string_loc i ppf x
| None ->
string i ppf "_"
and type_declaration i ppf x =
line i ppf "type_declaration %a\n" fmt_location x.ptype_loc;
let i = i+1 in
line i ppf "ptype_params =\n";
list (i+1) string_option_underscore ppf x.ptype_params;
line i ppf "ptype_cstrs =\n";
list (i+1) core_type_x_core_type_x_location ppf x.ptype_cstrs;
line i ppf "ptype_kind =\n";
type_kind (i+1) ppf x.ptype_kind;
line i ppf "ptype_private = %a\n" fmt_private_flag x.ptype_private;
line i ppf "ptype_manifest =\n";
option (i+1) core_type ppf x.ptype_manifest;
and type_kind i ppf x =
match x with
| Ptype_abstract ->
line i ppf "Ptype_abstract\n"
| Ptype_variant l ->
line i ppf "Ptype_variant\n";
list (i+1) string_x_core_type_list_x_location ppf l;
| Ptype_record l ->
line i ppf "Ptype_record\n";
list (i+1) string_x_mutable_flag_x_core_type_x_location ppf l;
and exception_declaration i ppf x = list i core_type ppf x
and class_type i ppf x =
line i ppf "class_type %a\n" fmt_location x.pcty_loc;
let i = i+1 in
match x.pcty_desc with
| Pcty_constr (li, l) ->
line i ppf "Pcty_constr %a\n" fmt_longident_loc li;
list i core_type ppf l;
| Pcty_signature (cs) ->
line i ppf "Pcty_signature\n";
class_signature i ppf cs;
| Pcty_fun (l, co, cl) ->
line i ppf "Pcty_fun \"%s\"\n" l;
core_type i ppf co;
class_type i ppf cl;
and class_signature i ppf cs =
line i ppf "class_signature %a\n" fmt_location cs.pcsig_loc;
core_type (i+1) ppf cs.pcsig_self;
list (i+1) class_type_field ppf cs.pcsig_fields;
and class_type_field i ppf x =
line i ppf "class_type_field %a\n" fmt_location x.pctf_loc;
let i = i+1 in
match x.pctf_desc with
| Pctf_inher (ct) ->
line i ppf "Pctf_inher\n";
class_type i ppf ct;
| Pctf_val (s, mf, vf, ct) ->
line i ppf "Pctf_val \"%s\" %a %a\n" s fmt_mutable_flag mf
fmt_virtual_flag vf;
core_type (i+1) ppf ct;
| Pctf_virt (s, pf, ct) ->
line i ppf "Pctf_virt \"%s\" %a\n" s fmt_private_flag pf;
core_type (i+1) ppf ct;
| Pctf_meth (s, pf, ct) ->
line i ppf "Pctf_meth \"%s\" %a\n" s fmt_private_flag pf;
core_type (i+1) ppf ct;
| Pctf_cstr (ct1, ct2) ->
line i ppf "Pctf_cstr\n";
core_type (i+1) ppf ct1;
core_type (i+1) ppf ct2;
and class_description i ppf x =
line i ppf "class_description %a\n" fmt_location x.pci_loc;
let i = i+1 in
line i ppf "pci_virt = %a\n" fmt_virtual_flag x.pci_virt;
line i ppf "pci_params =\n";
string_list_x_location (i+1) ppf x.pci_params;
line i ppf "pci_name = %a\n" fmt_string_loc x.pci_name;
line i ppf "pci_expr =\n";
class_type (i+1) ppf x.pci_expr;
and class_type_declaration i ppf x =
line i ppf "class_type_declaration %a\n" fmt_location x.pci_loc;
let i = i+1 in
line i ppf "pci_virt = %a\n" fmt_virtual_flag x.pci_virt;
line i ppf "pci_params =\n";
string_list_x_location (i+1) ppf x.pci_params;
line i ppf "pci_name = %a\n" fmt_string_loc x.pci_name;
line i ppf "pci_expr =\n";
class_type (i+1) ppf x.pci_expr;
and class_expr i ppf x =
line i ppf "class_expr %a\n" fmt_location x.pcl_loc;
let i = i+1 in
match x.pcl_desc with
| Pcl_constr (li, l) ->
line i ppf "Pcl_constr %a\n" fmt_longident_loc li;
list i core_type ppf l;
| Pcl_structure (cs) ->
line i ppf "Pcl_structure\n";
class_structure i ppf cs;
| Pcl_fun (l, eo, p, e) ->
line i ppf "Pcl_fun\n";
label i ppf l;
option i expression ppf eo;
pattern i ppf p;
class_expr i ppf e;
| Pcl_apply (ce, l) ->
line i ppf "Pcl_apply\n";
class_expr i ppf ce;
list i label_x_expression ppf l;
| Pcl_let (rf, l, ce) ->
line i ppf "Pcl_let %a\n" fmt_rec_flag rf;
list i pattern_x_expression_def ppf l;
class_expr i ppf ce;
| Pcl_constraint (ce, ct) ->
line i ppf "Pcl_constraint\n";
class_expr i ppf ce;
class_type i ppf ct;
and class_structure i ppf { pcstr_pat = p; pcstr_fields = l } =
line i ppf "class_structure\n";
pattern (i+1) ppf p;
list (i+1) class_field ppf l;
and class_field i ppf x =
line i ppf "class_field %a\n" fmt_location x.pcf_loc;
let i = i + 1 in
match x.pcf_desc with
| Pcf_inher (ovf, ce, so) ->
line i ppf "Pcf_inher %a\n" fmt_override_flag ovf;
class_expr (i+1) ppf ce;
option (i+1) string ppf so;
| Pcf_valvirt (s, mf, ct) ->
line i ppf "Pcf_valvirt %a\n" fmt_mutable_flag mf;
line (i+1) ppf "%a\n" fmt_string_loc s;
core_type (i+1) ppf ct;
| Pcf_val (s, mf, ovf, e) ->
line i ppf "Pcf_val %a %a\n" fmt_mutable_flag mf fmt_override_flag ovf;
line (i+1) ppf "%a\n" fmt_string_loc s;
expression (i+1) ppf e;
| Pcf_virt (s, pf, ct) ->
line i ppf "Pcf_virt %a\n" fmt_private_flag pf;
line (i+1) ppf "%a\n" fmt_string_loc s;
core_type (i+1) ppf ct;
| Pcf_meth (s, pf, ovf, e) ->
line i ppf "Pcf_meth %a %a\n" fmt_private_flag pf fmt_override_flag ovf;
line (i+1) ppf "%a\n" fmt_string_loc s;
expression (i+1) ppf e;
| Pcf_constr (ct1, ct2) ->
line i ppf "Pcf_constr\n";
core_type (i+1) ppf ct1;
core_type (i+1) ppf ct2;
| Pcf_init (e) ->
line i ppf "Pcf_init\n";
expression (i+1) ppf e;
and class_declaration i ppf x =
line i ppf "class_declaration %a\n" fmt_location x.pci_loc;
let i = i+1 in
line i ppf "pci_virt = %a\n" fmt_virtual_flag x.pci_virt;
line i ppf "pci_params =\n";
string_list_x_location (i+1) ppf x.pci_params;
line i ppf "pci_name = %a\n" fmt_string_loc x.pci_name;
line i ppf "pci_expr =\n";
class_expr (i+1) ppf x.pci_expr;
and module_type i ppf x =
line i ppf "module_type %a\n" fmt_location x.pmty_loc;
let i = i+1 in
match x.pmty_desc with
| Pmty_ident li -> line i ppf "Pmty_ident %a\n" fmt_longident_loc li;
| Pmty_signature (s) ->
line i ppf "Pmty_signature\n";
signature i ppf s;
| Pmty_functor (s, mt1, mt2) ->
line i ppf "Pmty_functor %a\n" fmt_string_loc s;
module_type i ppf mt1;
module_type i ppf mt2;
| Pmty_with (mt, l) ->
line i ppf "Pmty_with\n";
module_type i ppf mt;
list i longident_x_with_constraint ppf l;
| Pmty_typeof m ->
line i ppf "Pmty_typeof\n";
module_expr i ppf m;
and signature i ppf x = list i signature_item ppf x
and signature_item i ppf x =
line i ppf "signature_item %a\n" fmt_location x.psig_loc;
let i = i+1 in
match x.psig_desc with
| Psig_value (s, vd) ->
line i ppf "Psig_value %a\n" fmt_string_loc s;
value_description i ppf vd;
| Psig_type (l) ->
line i ppf "Psig_type\n";
list i string_x_type_declaration ppf l;
| Psig_exception (s, ed) ->
line i ppf "Psig_exception %a\n" fmt_string_loc s;
exception_declaration i ppf ed;
| Psig_module (s, mt) ->
line i ppf "Psig_module %a\n" fmt_string_loc s;
module_type i ppf mt;
| Psig_recmodule decls ->
line i ppf "Psig_recmodule\n";
list i string_x_module_type ppf decls;
| Psig_modtype (s, md) ->
line i ppf "Psig_modtype %a\n" fmt_string_loc s;
modtype_declaration i ppf md;
| Psig_open (ovf, li) ->
line i ppf "Psig_open %a %a\n"
fmt_override_flag ovf
fmt_longident_loc li;
| Psig_include (mt) ->
line i ppf "Psig_include\n";
module_type i ppf mt;
| Psig_class (l) ->
line i ppf "Psig_class\n";
list i class_description ppf l;
| Psig_class_type (l) ->
line i ppf "Psig_class_type\n";
list i class_type_declaration ppf l;
and modtype_declaration i ppf x =
match x with
| Pmodtype_abstract -> line i ppf "Pmodtype_abstract\n";
| Pmodtype_manifest (mt) ->
line i ppf "Pmodtype_manifest\n";
module_type (i+1) ppf mt;
and with_constraint i ppf x =
match x with
| Pwith_type (td) ->
line i ppf "Pwith_type\n";
type_declaration (i+1) ppf td;
| Pwith_typesubst (td) ->
line i ppf "Pwith_typesubst\n";
type_declaration (i+1) ppf td;
| Pwith_module li -> line i ppf "Pwith_module %a\n" fmt_longident_loc li;
| Pwith_modsubst li -> line i ppf "Pwith_modsubst %a\n" fmt_longident_loc li;
and module_expr i ppf x =
line i ppf "module_expr %a\n" fmt_location x.pmod_loc;
let i = i+1 in
match x.pmod_desc with
| Pmod_ident (li) -> line i ppf "Pmod_ident %a\n" fmt_longident_loc li;
| Pmod_structure (s) ->
line i ppf "Pmod_structure\n";
structure i ppf s;
| Pmod_functor (s, mt, me) ->
line i ppf "Pmod_functor %a\n" fmt_string_loc s;
module_type i ppf mt;
module_expr i ppf me;
| Pmod_apply (me1, me2) ->
line i ppf "Pmod_apply\n";
module_expr i ppf me1;
module_expr i ppf me2;
| Pmod_constraint (me, mt) ->
line i ppf "Pmod_constraint\n";
module_expr i ppf me;
module_type i ppf mt;
| Pmod_unpack (e) ->
line i ppf "Pmod_unpack\n";
expression i ppf e;
and structure i ppf x = list i structure_item ppf x
and structure_item i ppf x =
line i ppf "structure_item %a\n" fmt_location x.pstr_loc;
let i = i+1 in
match x.pstr_desc with
| Pstr_eval (e) ->
line i ppf "Pstr_eval\n";
expression i ppf e;
| Pstr_value (rf, l) ->
line i ppf "Pstr_value %a\n" fmt_rec_flag rf;
list i pattern_x_expression_def ppf l;
(*>JOCAML*)
| Pstr_def d ->
line i ppf "Pstr_def";
joindefinition i ppf d;
| Pstr_exn_global li ->
line i ppf "Pstr_exn_global %a\n" fmt_longident_loc li
(*<JOCAML*)
| Pstr_primitive (s, vd) ->
line i ppf "Pstr_primitive %a\n" fmt_string_loc s;
value_description i ppf vd;
| Pstr_type l ->
line i ppf "Pstr_type\n";
list i string_x_type_declaration ppf l;
| Pstr_exception (s, ed) ->
line i ppf "Pstr_exception %a\n" fmt_string_loc s;
exception_declaration i ppf ed;
| Pstr_exn_rebind (s, li) ->
line i ppf "Pstr_exn_rebind\n";
line (i+1) ppf "%a\n" fmt_string_loc s;
line (i+1) ppf "%a\n" fmt_longident_loc li;
| Pstr_module (s, me) ->
line i ppf "Pstr_module %a\n" fmt_string_loc s;
module_expr i ppf me;
| Pstr_recmodule bindings ->
line i ppf "Pstr_recmodule\n";
list i string_x_modtype_x_module ppf bindings;
| Pstr_modtype (s, mt) ->
line i ppf "Pstr_modtype %a\n" fmt_string_loc s;
module_type i ppf mt;
| Pstr_open (ovf, li) ->
line i ppf "Pstr_open %a %a\n"
fmt_override_flag ovf
fmt_longident_loc li;
| Pstr_class (l) ->
line i ppf "Pstr_class\n";
list i class_declaration ppf l;
| Pstr_class_type (l) ->
line i ppf "Pstr_class_type\n";
list i class_type_declaration ppf l;
| Pstr_include me ->
line i ppf "Pstr_include";
module_expr i ppf me
and string_x_type_declaration i ppf (s, td) =
string_loc i ppf s;
type_declaration (i+1) ppf td;
and string_x_module_type i ppf (s, mty) =
string_loc i ppf s;
module_type (i+1) ppf mty;
and string_x_modtype_x_module i ppf (s, mty, modl) =
string_loc i ppf s;
module_type (i+1) ppf mty;
module_expr (i+1) ppf modl;
and longident_x_with_constraint i ppf (li, wc) =
line i ppf "%a\n" fmt_longident_loc li;
with_constraint (i+1) ppf wc;
and core_type_x_core_type_x_location i ppf (ct1, ct2, l) =
line i ppf "<constraint> %a\n" fmt_location l;
core_type (i+1) ppf ct1;
core_type (i+1) ppf ct2;
and string_x_core_type_list_x_location i ppf (s, l, r_opt, loc) =
line i ppf "%a\n" fmt_location loc;
line (i+1) ppf "%a\n" fmt_string_loc s;
list (i+1) core_type ppf l;
option (i+1) core_type ppf r_opt;
and string_x_mutable_flag_x_core_type_x_location i ppf (s, mf, ct, loc) =
line i ppf "%a\n" fmt_location loc;
line (i+1) ppf "%a\n" fmt_mutable_flag mf;
line (i+1) ppf "%a" fmt_string_loc s;
core_type (i+1) ppf ct;
and string_list_x_location i ppf (l, loc) =
line i ppf "<params> %a\n" fmt_location loc;
list (i+1) string_loc ppf l;
and longident_x_pattern i ppf (li, p) =
line i ppf "%a\n" fmt_longident_loc li;
pattern (i+1) ppf p;
and pattern_x_expression_case i ppf (p, e) =
line i ppf "<case>\n";
pattern (i+1) ppf p;
expression (i+1) ppf e;
and pattern_x_expression_def i ppf (p, e) =
line i ppf "<def>\n";
pattern (i+1) ppf p;
expression (i+1) ppf e;
and string_x_expression i ppf (s, e) =
line i ppf "<override> %a\n" fmt_string_loc s;
expression (i+1) ppf e;
and longident_x_expression i ppf (li, e) =
line i ppf "%a\n" fmt_longident_loc li;
expression (i+1) ppf e;
and label_x_expression i ppf (l,e) =
line i ppf "<label> \"%s\"\n" l;
expression (i+1) ppf e;
and label_x_bool_x_core_type_list i ppf x =
match x with
Rtag (l, b, ctl) ->
line i ppf "Rtag \"%s\" %s\n" l (string_of_bool b);
list (i+1) core_type ppf ctl
| Rinherit (ct) ->
line i ppf "Rinherit\n";
core_type (i+1) ppf ct
;;
let rec toplevel_phrase i ppf x =
match x with
| Ptop_def (s) ->
line i ppf "Ptop_def\n";
structure (i+1) ppf s;
| Ptop_dir (s, da) ->
line i ppf "Ptop_dir \"%s\"\n" s;
directive_argument i ppf da;
and directive_argument i ppf x =
match x with
| Pdir_none -> line i ppf "Pdir_none\n"
| Pdir_string (s) -> line i ppf "Pdir_string \"%s\"\n" s;
| Pdir_int (i) -> line i ppf "Pdir_int %d\n" i;
| Pdir_ident (li) -> line i ppf "Pdir_ident %a\n" fmt_longident li;
| Pdir_bool (b) -> line i ppf "Pdir_bool %s\n" (string_of_bool b);
;;
let interface ppf x = list 0 signature_item ppf x;;
let implementation ppf x = list 0 structure_item ppf x;;
let top_phrase ppf x = toplevel_phrase 0 ppf x;;
|