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
module Location = Migrate_ast.Location
open Extended_ast
open Asttypes
open Fmt
open Ast
(** Shorthand for a commonly used option. *)
let ocp c = c.Conf.fmt_opts.ocp_indent_compat.v
(** Whether [exp] occurs in [args] as a labelled argument. *)
let is_labelled_arg args exp =
List.exists
~f:(function
| Nolabel, _ -> false
| Labelled _, x | Optional _, x -> phys_equal x exp )
args
let ctx_is_infix = function
| Exp {pexp_desc= Pexp_infix ({txt= ":="; _}, _, _); _} -> false
| Exp {pexp_desc= Pexp_infix _; _} -> true
| _ -> false
let ctx_is_rhs_of_infix ~ctx0 ~ctx =
match (ctx0, ctx) with
| Exp {pexp_desc= Pexp_infix ({txt= ":="; _}, _, _); _}, _ -> false
| Exp {pexp_desc= Pexp_infix (_, _, rhs); _}, Exp ctx
when phys_equal rhs ctx ->
true
| _ -> false
let ctx_is_apply_and_exp_is_func ~ctx ctx0 =
match (ctx, ctx0) with
| Exp exp, Exp {pexp_desc= Pexp_apply (func, _); _} -> phys_equal func exp
| _ -> false
(** [ctx_is_let_or_fun ~ctx ctx0] checks whether [ctx0] is a let binding containing
[ctx] or a [fun] with [ctx] on the RHS. *)
let ctx_is_let_or_fun ~ctx ctx0 =
match (ctx0, ctx) with
| Str {pstr_desc= Pstr_value _; _}, _ -> true
| _, Lb {pvb_body= Pfunction_cases _; _} ->
true
| Lb {pvb_body= Pfunction_body body; _}, Exp exp -> phys_equal body exp
| Bo _, _ -> true
| Exp {pexp_desc= Pexp_let ({pvbs_bindings; _}, _, _); _}, Exp exp
when List.exists pvbs_bindings ~f:(fun pvb ->
match (pvb.pvb_body, exp) with
| Pfunction_body body, _ -> phys_equal body exp
| Pfunction_cases _, {pexp_desc= Pexp_let _; _} ->
true
| _ -> false ) ->
true
| Exp {pexp_desc= Pexp_function (_, _, Pfunction_body rhs, _); _}, Exp exp
->
phys_equal rhs exp
| _ -> false
let parens_if parens (c : Conf.t) ?(disambiguate = false) k =
if disambiguate && c.fmt_opts.disambiguate_non_breaking_match.v then
wrap_if_fits_or parens "(" ")" k
else if not parens then k
else
match c.fmt_opts.indicate_multiline_delimiters.v with
| `Space ->
Fmt.fits_breaks "(" "(" $ k $ Fmt.fits_breaks ")" ~hint:(1, 0) ")"
| `Closing_on_separate_line ->
Fmt.fits_breaks "(" "(" $ k $ Fmt.fits_breaks ")" ~hint:(1000, 0) ")"
| `No -> wrap (str "(") (str ")") k
let parens c ?disambiguate k = parens_if true c ?disambiguate k
module Exp = struct
(** Return [None] if [ctx0] is not an application or [ctx] is not one of its
argument.
Else, returns [lbl, exp, is_last] where [lbl] is the label of the argument,
[exp] is the epxression in [ctx], and [is_last] is true if [exp] is the last
argument.*)
let ctx_is_apply_and_exp_is_arg ~ctx ~ctx0 =
match (ctx, ctx0) with
| Exp exp, Exp {pexp_desc= Pexp_apply (_, args); _} ->
let last_lbl, last_arg = List.last_exn args in
if phys_equal last_arg exp then Some (last_lbl, exp, true)
else
List.find_map
~f:(fun (lbl, x) ->
if phys_equal x exp then Some (lbl, exp, false) else None )
args
| _ -> None
let ctx_is_apply_and_exp_is_arg_with_label ~ctx ~ctx0 =
match ctx_is_apply_and_exp_is_arg ~ctx ~ctx0 with
| Some ((Labelled _ | Optional _), _, _) -> true
| _ -> false
let ctx_is_apply_and_exp_is_last_arg_and_other_args_are_simple c ~ctx ~ctx0
=
match (ctx, ctx0) with
| Exp exp, Exp {pexp_desc= Pexp_apply (_, args); _} ->
let (_lbl, last_arg), args_before =
match List.rev args with
| [] -> assert false
| hd :: tl -> (hd, List.rev tl)
in
let args_are_simple =
List.for_all args_before ~f:(fun (_, eI) ->
is_simple c (fun _ -> 0) (sub_exp ~ctx:ctx0 eI) )
in
Poly.equal last_arg exp && args_are_simple
| _ -> false
module Infix_op_arg = struct
let wrap (c : Conf.t) ?(parens_nested = false) ~parens k =
if parens || parens_nested then
let opn, hint, cls =
if parens || Poly.(c.fmt_opts.infix_precedence.v = `Parens) then
match c.fmt_opts.indicate_multiline_delimiters.v with
| `Space -> ("( ", Some (1, 0), ")")
| `No -> ("(", Some (0, 0), ")")
| `Closing_on_separate_line -> ("(", Some (1000, 0), ")")
else ("", None, "")
in
wrap_if (parens || parens_nested) (Fmt.fits_breaks "(" opn)
(Fmt.fits_breaks ")" ?hint cls)
k
else k
let dock xarg =
match xarg.ast.pexp_desc with
| Pexp_apply (_, args) -> (
match List.last_exn args with
| _, {pexp_desc= Pexp_function _; _}
|( _
, {pexp_desc= Pexp_beginend ({pexp_desc= Pexp_function _; _}, _); _}
) ->
true
| _ -> false )
| Pexp_match _ | Pexp_try _ -> true
| _ -> false
end
let wrap (c : Conf.t) ?(disambiguate = false) ?(fits_breaks = true)
?(offset_closing_paren = 0) ~parens k =
if disambiguate && c.fmt_opts.disambiguate_non_breaking_match.v then
wrap_if_fits_or parens "(" ")" k
else if not parens then k
else if fits_breaks then wrap_fits_breaks ~space:false c "(" ")" k
else
match c.fmt_opts.indicate_multiline_delimiters.v with
| `Space ->
Fmt.fits_breaks "(" "(" $ k $ Fmt.fits_breaks ")" ~hint:(1, 0) ")"
| `Closing_on_separate_line ->
Fmt.fits_breaks "(" "(" $ k
$ Fmt.fits_breaks ")" ~hint:(1000, offset_closing_paren) ")"
| `No -> wrap (str "(") (str ")") k
let break_fun_kw c ~ctx ~ctx0 ~last_arg =
let is_labelled_arg =
match ctx_is_apply_and_exp_is_arg ~ctx ~ctx0 with
| Some ((Labelled _ | Optional _), _, _) -> true
| _ -> false
in
let is_ctx_beginend =
match ctx0 with
| Exp {pexp_desc= Pexp_beginend _; _} -> true
| _ -> false
in
if Conf.(c.fmt_opts.ocp_indent_compat.v) then
if last_arg || is_labelled_arg then break 1 2 else str " "
else if is_labelled_arg then break 1 2
else if last_arg then break 1 0
else if is_ctx_beginend then break 1 0
else str " "
let box_fun_decl_args ~ctx ~ctx0 ?(last_arg = false) ?epi c ~parens ~kw
~args ~annot =
let is_let_func =
match ctx0 with
| Ast.Str _ | Lb _ ->
true
| _ -> false
in
let kw_in_box = (not last_arg) && ocp c in
let name = "Params.box_fun_decl_args" in
let box_decl, should_box_args =
if ocp c then
let is_labelled_arg =
match ctx_is_apply_and_exp_is_arg ~ctx ~ctx0 with
| Some ((Labelled _ | Optional _), _, _) -> true
| _ -> false
in
if is_labelled_arg then (Fn.id, true)
else (hvbox ~name (if parens then 1 else 2), false)
else
let box =
if is_let_func then if kw_in_box then hovbox ~name 4 else Fn.id
else
match ctx_is_apply_and_exp_is_arg ~ctx ~ctx0 with
| Some (_, _, true) ->
hvbox ~name (if parens then 0 else 2)
| Some (Nolabel, _, false) ->
hovbox ~name 0
| Some ((Labelled _ | Optional _), _, false) -> hvbox ~name 0
| None -> Fn.id
in
(box, not c.fmt_opts.wrap_fun_args.v)
in
let kw_out_of_box, kw_in_box =
if kw_in_box then (noop, kw) else (kw, noop)
in
kw_out_of_box
$ box_decl
( kw_in_box
$ hvbox_if should_box_args 0 (args $ fmt_opt annot $ fmt_opt epi) )
let box_fun_expr (c : Conf.t) ~source ~ctx0 ~ctx =
match ctx0 with
| Exp {pexp_desc= Pexp_beginend _; _} -> (Fn.id, 0)
| _ ->
let indent =
if ctx_is_rhs_of_infix ~ctx0 ~ctx then 0
else if Poly.equal c.fmt_opts.function_indent_nested.v `Always then
c.fmt_opts.function_indent.v
else if ctx_is_let_or_fun ~ctx ctx0 then
if c.fmt_opts.let_binding_deindent_fun.v then 1 else 0
else if ocp c then
let begins_line loc =
Source.begins_line ~ignore_spaces:true source loc
in
match ctx_is_apply_and_exp_is_arg ~ctx ~ctx0 with
| Some (Nolabel, fun_exp, is_last_arg) ->
if begins_line fun_exp.pexp_loc then
if is_last_arg then 5
else
3
else 2
| Some ((Labelled x | Optional x), fun_exp, is_last_arg) ->
if begins_line fun_exp.pexp_loc then
if is_last_arg then 4 else 2
else if begins_line x.loc then 4
else 2
| None -> if ctx_is_apply_and_exp_is_func ~ctx ctx0 then 3 else 2
else if
ctx_is_apply_and_exp_is_last_arg_and_other_args_are_simple c ~ctx
~ctx0
then 4
else 2
in
let name = "Params.box_fun_expr" in
let mkbox = if ctx_is_let_or_fun ~ctx ctx0 then hvbox else hovbox in
(mkbox ~name indent, ~-indent)
let function_attrs_sp c ~ctx0 ~ctx =
let arg_is_simple_approx (_, exp) =
Ast.is_simple c (fun _ -> 0) (sub_exp ~ctx:ctx0 exp)
in
match (ctx0, ctx) with
| Exp {pexp_desc= Pexp_apply (_, args); _}, Exp exp -> (
match List.rev args with
| [] -> false
| (_, last_arg) :: other_args ->
phys_equal exp last_arg
&& List.for_all ~f:arg_is_simple_approx other_args )
| _ -> false
let break_fun_decl_args c ~ctx ~last_arg =
match ctx with
| _ when (not last_arg) && ocp c -> str " "
| Ast.Str _ | Lb _ ->
str " "
| Clf _ ->
str " "
| _ -> break 1 ~-2
let single_line_function ~ctx ~ctx0 ~args =
match ctx_is_apply_and_exp_is_arg ~ctx ~ctx0 with
| Some (_, _, true) -> List.is_empty args
| _ -> false
let indent_function (c : Conf.t) ~ctx ~ctx0 ~parens =
if ctx_is_rhs_of_infix ~ctx0 ~ctx then if ocp c && parens then 1 else 0
else if Poly.equal c.fmt_opts.function_indent_nested.v `Always then
c.fmt_opts.function_indent.v
else
match ctx_is_apply_and_exp_is_arg ~ctx ~ctx0 with
| Some _ -> 2
| None -> if ocp c && parens then 2 else 0
let box_function_cases c ?indent ~ctx ~ctx0 ~parens =
let indent =
match indent with
| Some i -> i
| None -> indent_function c ~ctx ~ctx0 ~parens
in
match ctx0 with
| Exp {pexp_desc= Pexp_ifthenelse _; _}
when Stdlib.(Conf.(c.fmt_opts.if_then_else.v) = `Compact) ->
hvbox ~name:"cases box" indent
| _ ->
if
ctx_is_apply_and_exp_is_last_arg_and_other_args_are_simple c ~ctx
~ctx0
|| ctx_is_let_or_fun ~ctx ctx0
then Fn.id
else hvbox indent
let box_fun_decl ~ctx0 ~ctx c k =
match (ctx0, ctx) with
| Exp {pexp_desc= Pexp_beginend _; _}, _ -> hovbox 2 k
| _ when ocp c -> hvbox 2 k
| ( Lb
{ pvb_body=
Pfunction_body {pexp_desc= Pexp_function ([], _, _, _); _}
; _ }
, _ ) ->
hovbox 2 k
| (Str _ | Lb _ | Clf _), _ -> hovbox 4 k
| Exp {pexp_desc= Pexp_let (_, e, _); _}, Exp e'
when not (phys_equal e e') ->
hovbox 4 k
| _ -> hvbox 2 k
let box_fun_decl_after_pro ~ctx0 =
match ctx0 with
| Exp {pexp_desc= Pexp_beginend _; _} ->
hvbox (2 - String.length "begin ")
| _ -> Fn.id
let end_break_beginend ~ctx0 ~box =
if box then break 1000 0
else
match ctx0 with
| Exp {pexp_desc= Pexp_ifthenelse _; _} -> break 1000 0
| _ -> break 1000 (-2)
let box_beginend c ~ctx0 ~ctx =
let contains_fun =
match ctx with
| Exp {pexp_desc= Pexp_beginend ({pexp_desc= Pexp_function _; _}, _); _}
->
true
| _ -> false
in
contains_fun
&& not
(ctx_is_apply_and_exp_is_last_arg_and_other_args_are_simple c ~ctx
~ctx0 )
let box_beginend_subexpr c ~ctx0 ~ctx =
not
(ctx_is_apply_and_exp_is_last_arg_and_other_args_are_simple c ~ctx
~ctx0 )
let match_inner_pro ~ctx0 ~parens =
if parens then false
else
match ctx0 with Exp {pexp_desc= Pexp_infix _; _} -> false | _ -> true
let function_inner_pro ~has_cmts_outer ~ctx0 =
if has_cmts_outer then false
else
match ctx0 with
| Str _ | Lb _ | Exp {pexp_desc= Pexp_ifthenelse _ | Pexp_let _; _} ->
false
| _ -> true
let ifthenelse_inner_pro ~parens ~ctx0 =
if parens then false
else
match ctx0 with
| Exp {pexp_desc= Pexp_ifthenelse _; _} -> false
| _ -> true
let fun_label_sep (c : Conf.t) =
if c.fmt_opts.ocp_indent_compat.v then str ":" $ cut_break else str ":"
end
module Mod = struct
type args = {dock: bool; arg_psp: Fmt.t; indent: int; align: bool}
let arg_is_sig arg =
match arg.txt with
| Named
( _
, { pmty_desc=
Pmty_signature _ | Pmty_typeof {pmod_desc= Pmod_structure _; _}
; _ } ) ->
true
| _ -> false
let get_args (c : Conf.t) args =
let indent, psp_indent = if ocp c then (2, 2) else (0, 4) in
let dock =
if ocp c then match args with [arg] -> arg_is_sig arg | _ -> false
else List.for_all ~f:arg_is_sig args
in
let arg_psp = if dock then str " " else break 1 psp_indent in
let align = (not dock) && ocp c in
{dock; arg_psp; indent; align}
let break_constraint c ~rhs =
if ocp c then
match rhs.pmty_desc with
| Pmty_signature _ when ocp c -> break 1 0
| _ -> break 1 2
else break 1 2
end
module Pcty = struct
let is_sig rhs =
match rhs.pcty_desc with Pcty_signature _ -> true | _ -> false
let arrow (c : Conf.t) ~rhs =
let pre, post =
match c.fmt_opts.break_separators.v with
| `Before -> (space_break, str " ")
| `After -> (str " ", space_break)
in
let post = if is_sig rhs then break 1 ~-2 else post in
pre $ str "->" $ post
let break_let_open _conf ~rhs = break 1000 (if is_sig rhs then ~-2 else 0)
end
let get_or_pattern_is_nested ~ctx pat =
let check_cases = List.exists ~f:(fun c -> phys_equal c.pc_lhs pat) in
match ctx with
| _ when not (List.is_empty pat.ppat_attributes) -> true
| Ast.Exp
{ pexp_desc=
( Pexp_function (_, _, Pfunction_cases (cases, _, _), _)
| Pexp_match (_, cases, _)
| Pexp_try (_, cases, _) )
; _ }
|Lb {pvb_body= Pfunction_cases (cases, _, _); _} ->
not (check_cases cases)
| Exp {pexp_desc= Pexp_let (bindings, _, _); _}
|Cl {pcl_desc= Pcl_let (bindings, _, _); _}
|Str {pstr_desc= Pstr_value bindings; _} ->
not
(List.exists bindings.pvbs_bindings ~f:(function
| {pvb_body= Pfunction_cases (cases, _, _); _} -> check_cases cases
| _ -> false ))
| _ -> true
let get_or_pattern_sep ?(cmts_before = false) ?(space = false) (c : Conf.t)
~nested =
let nspaces = if cmts_before then 1000 else 1 in
match c.fmt_opts.break_cases.v with
| _ when nested -> break nspaces 0 $ str "| "
| `Nested -> break nspaces 0 $ str "| "
| _ -> (
let nspaces =
match c.fmt_opts.break_cases.v with
| `All | `Vertical -> 1000
| _ -> nspaces
in
match c.fmt_opts.indicate_nested_or_patterns.v with
| `Space ->
cbreak ~fits:("", nspaces, "| ")
~breaks:("", 0, if space then " | " else " |")
| `Unsafe_no -> break nspaces 0 $ str "| " )
(** [is_special_beginend exp] returns true if [begin `exp` end] can be formatted
as
{[begin abc
...
end]}
instead of
{[begin
abc
...
end]}*)
let is_special_beginend exp =
match exp with
| Pexp_match _ | Pexp_try _ | Pexp_function _ | Pexp_ifthenelse _ -> true
| _ -> false
type cases =
{ leading_space: Fmt.t
; bar: Fmt.t
; box_all: Fmt.t -> Fmt.t
; box_pattern_arrow: Fmt.t -> Fmt.t
; break_before_arrow: Fmt.t
; break_after_arrow: Fmt.t
; open_paren_branch: Fmt.t
; break_after_opening_paren: Fmt.t
; expr_parens: bool option
; expr_eol: Fmt.t option
; branch_expr: expression Ast.xt
; close_paren_branch: Fmt.t }
let get_cases (c : Conf.t) ~fmt_infix_ext_attrs ~ctx ~first ~last
~cmts_before ~xbch:({ast; _} as xast) =
let indent =
match (c.fmt_opts.cases_matching_exp_indent.v, (ctx, ast.pexp_desc)) with
| ( `Compact
, ( ( Exp
{ pexp_desc=
Pexp_function _ | Pexp_match _ | Pexp_try _ | Pexp_let _
; _ }
| Lb {pvb_body= Pfunction_cases _; _} )
, ( Pexp_match _ | Pexp_try _
| Pexp_beginend ({pexp_desc= Pexp_match _ | Pexp_try _; _}, _) ) )
) ->
2
| _, _ -> c.fmt_opts.cases_exp_indent.v
in
let align_nested_match =
match (ast.pexp_desc, c.fmt_opts.nested_match.v) with
| (Pexp_match _ | Pexp_try _), `Align -> last
| _ -> false
in
let body_has_parens =
match ast.pexp_desc with
| Pexp_tuple _ when Poly.(c.fmt_opts.parens_tuple.v = `Always) ->
true
| _ -> Ast.Exp.is_symbol ast
in
let parens_branch, expr_parens =
if align_nested_match then (false, Some false)
else if c.fmt_opts.leading_nested_match_parens.v then (false, None)
else (parenze_exp xast && not body_has_parens, Some false)
in
let indent = if align_nested_match then 0 else indent in
let open_paren_branch, close_paren_branch, branch_expr =
match ast with
| { pexp_desc= Pexp_beginend (nested_exp, infix_ext_attrs)
; pexp_attributes= []
; _ }
when (not cmts_before)
&& not (is_special_beginend nested_exp.pexp_desc) ->
let close_paren =
let offset = if indent >= 2 then 2 - indent else 0 in
fits_breaks " end" ~level:1 ~hint:(1000, offset) "end"
in
( break 1 0 $ fmt_infix_ext_attrs ~pro:(str "begin") infix_ext_attrs
, close_paren
, sub_exp ~ctx:(Exp ast) nested_exp )
| _ ->
let close_paren =
fmt_if parens_branch
( match c.fmt_opts.indicate_multiline_delimiters.v with
| `Space -> space_break $ str ")"
| `No -> cut_break $ str ")"
| `Closing_on_separate_line -> break 1000 (-2) $ str ")" )
in
(fmt_if parens_branch (str " ("), close_paren, xast)
in
let expr_eol = Option.some_if cmts_before force_break in
match c.fmt_opts.break_cases.v with
| `Fit ->
{ leading_space= fmt_if (not first) space_break
; bar= fmt_or first (if_newline "| ") (str "| ")
; box_all= hvbox indent
; box_pattern_arrow= hovbox 2
; break_before_arrow= break 1 0
; break_after_arrow= noop
; open_paren_branch
; break_after_opening_paren= space_break
; expr_parens
; expr_eol
; branch_expr
; close_paren_branch }
| `Nested ->
{ leading_space= fmt_if (not first) space_break
; bar= fmt_or first (if_newline "| ") (str "| ")
; box_all= Fn.id
; box_pattern_arrow= hovbox 0
; break_before_arrow= break 1 2
; break_after_arrow= fmt_if (not parens_branch) (break 0 3)
; open_paren_branch
; break_after_opening_paren=
fmt_or (indent > 2) (break 1 4) (break 1 2)
; expr_parens
; expr_eol
; branch_expr
; close_paren_branch }
| `Fit_or_vertical ->
{ leading_space= break_unless_newline 1000 0
; bar= str "| "
; box_all= hovbox indent
; box_pattern_arrow= hovbox 0
; break_before_arrow= break 1 2
; break_after_arrow= fmt_if (not parens_branch) (break 0 3)
; open_paren_branch
; break_after_opening_paren= space_break
; expr_parens
; expr_eol
; branch_expr
; close_paren_branch }
| `Toplevel | `All ->
{ leading_space= break_unless_newline 1000 0
; bar= str "| "
; box_all= hvbox indent
; box_pattern_arrow= hovbox 0
; break_before_arrow= break 1 2
; break_after_arrow= fmt_if (not parens_branch) (break 0 3)
; open_paren_branch
; break_after_opening_paren= space_break
; expr_parens
; expr_eol
; branch_expr
; close_paren_branch }
| `Vertical ->
{ leading_space= break_unless_newline 1000 0
; bar= str "| "
; box_all= hvbox indent
; box_pattern_arrow= hovbox 0
; break_before_arrow= break 1 2
; break_after_arrow= fmt_if (not parens_branch) (break 0 3)
; open_paren_branch
; break_after_opening_paren= break 1000 0
; expr_parens
; expr_eol
; branch_expr
; close_paren_branch }
let wrap_collec c ~space_around opn cls =
if space_around then wrap (str opn $ char ' ') (break 1 0 $ str cls)
else wrap_fits_breaks c opn cls
let wrap_record (c : Conf.t) =
wrap_collec c ~space_around:c.fmt_opts.space_around_records.v "{" "}"
let wrap_tuple (c : Conf.t) ~parens ~no_parens_if_break ?(close = noop) items
=
let tuple_sep =
match c.fmt_opts.break_separators.v with
| `Before -> fits_breaks ", " ~hint:(1000, -2) ", "
| `After -> str "," $ space_break
in
let k = list items tuple_sep Fn.id $ close in
if parens then wrap_fits_breaks c "(" ")" (hvbox 0 k)
else if no_parens_if_break then k
else fits_breaks "" "( " $ hvbox 0 k $ fits_breaks "" ~hint:(1, 0) ")"
type record_type =
{ docked_before: Fmt.t
; break_before: Fmt.t
; box_record: Fmt.t -> Fmt.t
; box_spaced: bool
; sep_before: Fmt.t
; sep_after: Fmt.t
; break_after: Fmt.t
; docked_after: Fmt.t }
let get_record_type (c : Conf.t) =
let sparse_type_decl = Poly.(c.fmt_opts.type_decl.v = `Sparse) in
let space = if c.fmt_opts.space_around_records.v then 1 else 0 in
let dock = c.fmt_opts.dock_collection_brackets.v in
let break_before, sep_before, sep_after =
match c.fmt_opts.break_separators.v with
| `Before ->
( fmt_or dock (break space 2) space_break
, fmt_or sparse_type_decl
(force_break $ str "; ")
(cut_break $ str "; ")
, noop )
| `After ->
( fmt_or dock (break space 0) space_break
, noop
, fmt_or dock
(fmt_or sparse_type_decl force_break space_break)
(fmt_or sparse_type_decl (break 1000 2) (break 1 2)) )
in
{ docked_before= fmt_if dock (str " {")
; break_before
; box_record= (fun k -> if dock then k else hvbox 0 (wrap_record c k))
; box_spaced= c.fmt_opts.space_around_records.v
; sep_before
; sep_after
; break_after= fmt_if dock (break space (-2))
; docked_after= fmt_if dock (str "}") }
type elements_collection =
{ box: Fmt.t -> Fmt.t
; sep_before: Fmt.t
; sep_after_non_final: Fmt.t
; sep_after_final: Fmt.t }
type elements_collection_record_expr = {break_after_with: Fmt.t}
let get_record_expr (c : Conf.t) =
let space = if c.fmt_opts.space_around_records.v then 1 else 0 in
let dock = c.fmt_opts.dock_collection_brackets.v in
let box k =
if dock then
hvbox 0 (wrap (str "{") (str "}") (break space 2 $ k $ break space 0))
else hvbox 0 (wrap_record c k)
in
( ( match c.fmt_opts.break_separators.v with
| `Before ->
{ box
; sep_before= cut_break $ str "; "
; sep_after_non_final= noop
; sep_after_final= noop }
| `After ->
{ box
; sep_before= noop
; sep_after_non_final= str ";" $ break 1 2
; sep_after_final= fmt_if dock (fits_breaks ~level:0 "" ";") } )
, {break_after_with= break 1 2} )
let box_collec (c : Conf.t) =
match c.fmt_opts.break_collection_expressions.v with
| `Wrap -> hovbox
| `Fit_or_vertical -> hvbox
let collection_expr (c : Conf.t) ~space_around opn cls =
let space = if space_around then 1 else 0 in
let dock = c.fmt_opts.dock_collection_brackets.v in
let offset = if dock then -2 else String.length opn - 1 in
match c.fmt_opts.break_separators.v with
| `Before ->
{ box=
(fun k ->
if dock then
hvbox 0
(wrap (str opn) (str cls)
( break space (String.length opn + 1)
$ box_collec c 0 k $ break space 0 ) )
else box_collec c 0 (wrap_collec c ~space_around opn cls k) )
; sep_before= break 0 offset $ str "; "
; sep_after_non_final= noop
; sep_after_final= noop }
| `After ->
{ box=
(fun k ->
if dock then
hvbox 0
(wrap (str opn) (str cls)
(break space 2 $ box_collec c 0 k $ break space 0) )
else box_collec c 0 (wrap_collec c ~space_around opn cls k) )
; sep_before= noop
; sep_after_non_final=
fmt_or dock
(str ";" $ break 1 0)
(char ';' $ break 1 (String.length opn + 1))
; sep_after_final= fmt_if dock (fits_breaks ~level:1 "" ";") }
let get_list_expr (c : Conf.t) =
collection_expr c ~space_around:c.fmt_opts.space_around_lists.v "[" "]"
let get_array_expr (c : Conf.t) =
collection_expr c ~space_around:c.fmt_opts.space_around_arrays.v "[|" "|]"
let box_pattern_docked (c : Conf.t) ~ctx ~space_around ~pat opn cls k =
let space = if space_around then 1 else 0 in
let indent_opn, indent_cls =
match (ctx, c.fmt_opts.break_separators.v) with
| Ast.Exp {pexp_desc= Pexp_match _ | Pexp_try _; _}, `Before ->
(String.length opn - 3, 1 - String.length opn)
| Ast.Exp {pexp_desc= Pexp_match _ | Pexp_try _; _}, `After -> (-3, 1)
| Ast.Exp {pexp_desc= Pexp_let ({pvbs_bindings; _}, _, _); _}, _
when List.exists pvbs_bindings ~f:(fun b -> phys_equal b.pvb_pat pat)
->
let ext_length =
let binding =
List.find_exn pvbs_bindings ~f:(fun b ->
phys_equal b.pvb_pat pat )
in
binding.pvb_attributes.attrs_extension
|> Option.map ~f:(fun ext -> ext.txt |> String.length |> ( + ) 1)
|> Option.value ~default:0
in
(-4 - ext_length, 0)
| _ -> (0, 0)
in
hvbox indent_opn
(wrap (str opn) (str cls) (break space 2 $ k $ break space indent_cls))
let get_record_pat (c : Conf.t) ~ctx pat =
let params, _ = get_record_expr c in
let box =
if c.fmt_opts.dock_collection_brackets.v then
box_pattern_docked c ~ctx
~space_around:c.fmt_opts.space_around_records.v ~pat "{" "}"
else params.box
in
{params with box}
let collection_pat (c : Conf.t) ~ctx ~space_around ~pat opn cls =
let params = collection_expr c ~space_around opn cls in
let box =
if c.fmt_opts.dock_collection_brackets.v then
box_collec c 0 >> box_pattern_docked c ~ctx ~space_around ~pat opn cls
else params.box
in
{params with box}
let get_list_pat (c : Conf.t) ~ctx pat =
collection_pat c ~ctx ~space_around:c.fmt_opts.space_around_lists.v ~pat
"[" "]"
let get_array_pat (c : Conf.t) ~ctx pat =
collection_pat c ~ctx ~space_around:c.fmt_opts.space_around_arrays.v ~pat
"[|" "|]"
type if_then_else =
{ box_branch: Fmt.t -> Fmt.t
; cond: Fmt.t
; box_keyword_and_expr: Fmt.t -> Fmt.t
; branch_pro: Fmt.t
; wrap_parens: Fmt.t -> Fmt.t
; beginend_loc: Location.t option
; box_expr: bool option
; expr_pro: Fmt.t option
; expr_eol: Fmt.t option
; branch_expr: expression Ast.xt
; break_end_branch: Fmt.t
; space_between_branches: Fmt.t }
let get_if_then_else (c : Conf.t) ~pro ~first ~last ~parens_bch
~parens_prev_bch ~xcond ~xbch ~expr_loc ~fmt_infix_ext_attrs
~infix_ext_attrs ~fmt_cond ~cmts_before_kw ~cmts_after_kw =
let imd = c.fmt_opts.indicate_multiline_delimiters.v in
let beginend_loc, infix_ext_attrs_beginend, branch_expr =
let ast = xbch.Ast.ast in
match ast with
| {pexp_desc= Pexp_beginend ({pexp_desc; _}, _); _}
when is_special_beginend pexp_desc ->
(None, None, xbch)
| { pexp_desc= Pexp_beginend (nested_exp, infix_ext_attrs)
; pexp_attributes= []
; pexp_loc
; _ } ->
( Some pexp_loc
, Some infix_ext_attrs
, sub_exp ~ctx:(Exp ast) nested_exp )
| _ -> (None, None, xbch)
in
let has_beginend = Option.is_some beginend_loc in
let wrap_parens ~wrap_breaks k =
if has_beginend then
let infix_ext_attrs_beginend =
Option.value_exn infix_ext_attrs_beginend
in
fmt_infix_ext_attrs ~pro:(str "begin") infix_ext_attrs_beginend
$ wrap_breaks k $ str "end"
else if parens_bch then wrap (str "(") (str ")") (wrap_breaks k)
else k
in
let get_parens_breaks ~opn_hint_indent ~cls_hint:(ch_sp, ch_sl) =
let brk hint = fits_breaks "" ~hint "" in
if has_beginend then
let _, offset = ch_sl in
wrap (brk (1, opn_hint_indent)) (break 1000 offset)
else
match imd with
| `Space -> wrap (brk (1, opn_hint_indent)) (brk ch_sp)
| `No -> wrap (brk (0, opn_hint_indent)) noop
| `Closing_on_separate_line ->
wrap (brk (0, opn_hint_indent)) (brk ch_sl)
in
let cond () =
match xcond with
| Some xcnd ->
hvbox 2
( hvbox 0
( hvbox 2
( pro
$ fmt_if (not first) (str "else ")
$ fmt_infix_ext_attrs ~pro:(str "if") infix_ext_attrs
$ space_break $ fmt_cond xcnd )
$ space_break $ cmts_before_kw $ str "then" )
$ opt cmts_after_kw Fn.id )
| None ->
cmts_before_kw $ hvbox 2 (pro $ str "else" $ opt cmts_after_kw Fn.id)
in
let branch_pro ?(indent = 2) () =
if Option.is_some cmts_after_kw then break 1000 indent
else if has_beginend || parens_bch then str " "
else break 1 indent
in
match c.fmt_opts.if_then_else.v with
| `Compact ->
{ box_branch= hovbox ~name:"Params.get_if_then_else `Compact" 2
; cond= cond ()
; box_keyword_and_expr= Fn.id
; branch_pro= branch_pro ~indent:0 ()
; wrap_parens=
wrap_parens
~wrap_breaks:
(get_parens_breaks ~opn_hint_indent:0
~cls_hint:((1, 0), (1000, -2)) )
; beginend_loc
; box_expr= Some false
; expr_pro= None
; expr_eol= None
; branch_expr
; break_end_branch= noop
; space_between_branches= space_break }
| `K_R ->
{ box_branch= Fn.id
; cond= cond ()
; box_keyword_and_expr= Fn.id
; branch_pro= branch_pro ()
; wrap_parens= wrap_parens ~wrap_breaks:(wrap (break 1000 2) noop)
; beginend_loc
; box_expr= Some has_beginend
; expr_pro= None
; expr_eol= Some (break 1 2)
; branch_expr
; break_end_branch=
fmt_if (parens_bch || has_beginend || not last) (break 1000 0)
; space_between_branches= fmt_if (has_beginend || parens_bch) (str " ")
}
| `Fit_or_vertical ->
{ box_branch=
hovbox
( match imd with
| `Closing_on_separate_line when parens_prev_bch -> -2
| _ -> 0 )
; cond= cond ()
; box_keyword_and_expr= Fn.id
; branch_pro= branch_pro ()
; wrap_parens=
wrap_parens
~wrap_breaks:
(get_parens_breaks ~opn_hint_indent:2
~cls_hint:((1, 0), (1000, 0)) )
; beginend_loc
; box_expr= Some false
; expr_pro=
Some
(fmt_if
(not (Location.is_single_line expr_loc c.fmt_opts.margin.v))
(break_unless_newline 1000 2) )
; expr_eol= Some (break 1 2)
; branch_expr
; break_end_branch= noop
; space_between_branches=
( match imd with
| `Closing_on_separate_line when has_beginend || parens_bch ->
str " "
| _ -> space_break ) }
| `Vertical ->
{ box_branch= Fn.id
; cond= cond ()
; box_keyword_and_expr= Fn.id
; branch_pro= branch_pro ()
; wrap_parens=
wrap_parens
~wrap_breaks:
(get_parens_breaks ~opn_hint_indent:2
~cls_hint:((1, 0), (1000, 0)) )
; beginend_loc
; box_expr= None
; expr_pro= Some (break_unless_newline 1000 2)
; expr_eol= None
; branch_expr
; break_end_branch= noop
; space_between_branches=
( match imd with
| `Closing_on_separate_line when parens_bch -> str " "
| _ -> space_break ) }
| `Keyword_first ->
let keyword =
hvbox 2
( fmt_or (Option.is_some xcond) (str "then") (str "else")
$ opt cmts_after_kw Fn.id )
and cond =
match xcond with
| Some xcond ->
hvbox 2
( pro
$ fmt_if (not first) (str "else ")
$ fmt_infix_ext_attrs ~pro:(str "if") infix_ext_attrs
$ space_break $ fmt_cond xcond $ cmts_before_kw )
$ space_break
| None -> cmts_before_kw
in
{ box_branch= Fn.id
; cond
; box_keyword_and_expr= (fun k -> hovbox 2 (keyword $ k))
; branch_pro= branch_pro ~indent:0 ()
; wrap_parens=
wrap_parens
~wrap_breaks:
(get_parens_breaks ~opn_hint_indent:0
~cls_hint:((1, 0), (1000, -2)) )
; beginend_loc
; box_expr= None
; expr_pro= None
; expr_eol= None
; branch_expr
; break_end_branch= noop
; space_between_branches= space_break }
let match_indent ?(default = 0) (c : Conf.t) ~parens ~(ctx : Ast.t) =
match (c.fmt_opts.match_indent_nested.v, ctx) with
| `Always, _ | _, (Top | Sig _ | Str _) -> c.fmt_opts.match_indent.v
| _, Exp {pexp_desc= Pexp_infix _; _} when parens ->
2
| _ -> default
let comma_sep (c : Conf.t) : Fmt.t =
match c.fmt_opts.break_separators.v with
| `Before -> cut_break $ str ", "
| `After -> str "," $ break 1 2
module Align = struct
let general (c : Conf.t) t =
hvbox_if (not c.fmt_opts.align_symbol_open_paren.v) 0 t
let infix_op = general
let match_ (c : Conf.t) ~xexp:{ast; ctx} t =
let docked =
match ctx with
| Exp {pexp_desc= Pexp_infix (_, _, rhs); _} when phys_equal rhs ast ->
c.fmt_opts.ocp_indent_compat.v
| _ -> false
in
let align = (not c.fmt_opts.align_symbol_open_paren.v) && not docked in
hvbox_if align 0 t
let function_ (c : Conf.t) ~parens ~(ctx0 : Ast.t) ~self t =
let align =
match ctx0 with
| Exp {pexp_desc= Pexp_infix (_, _, {pexp_desc= Pexp_function _; _}); _}
->
false
| Exp {pexp_desc= Pexp_apply (_, args); _}
when is_labelled_arg args self ->
false
| _ -> parens && not c.fmt_opts.align_symbol_open_paren.v
in
hvbox_if align 0 t
let fun_decl (c : Conf.t) ~decl ~pattern ~args =
if c.fmt_opts.ocp_indent_compat.v then
hovbox 4 (decl $ hvbox 2 (pattern $ args))
else hovbox 4 (decl $ pattern) $ args
let module_pack (c : Conf.t) ~me =
if not c.fmt_opts.ocp_indent_compat.v then false
else
match me.pmod_desc with
| Pmod_structure _ | Pmod_ident _ -> false
| _ -> true
end
module Indent = struct
let function_ = Exp.indent_function
let fun_type_annot c = if ocp c then 2 else 4
let fun_args c = if ocp c then 6 else 4
let docked_function_after_fun (c : Conf.t) ~parens ~ctx0 ~ctx =
match ctx0 with
| Str _ | Lb _ ->
if c.fmt_opts.let_binding_deindent_fun.v then 1 else 0
| _ when ctx_is_infix ctx0 -> 0
| _ when ocp c -> (
match Exp.ctx_is_apply_and_exp_is_arg ~ctx ~ctx0 with
| Some (_, _, true) -> 2
| _ -> if parens then 3 else 2 )
| _ -> 2
let fun_args_group (c : Conf.t) ~lbl exp =
if not (ocp c) then 2
else
match exp.pexp_desc with
| Pexp_function ([], None, Pfunction_cases _, _) -> 2
| _ -> ( match lbl with Nolabel -> 3 | _ -> 2 )
let record_docstring (c : Conf.t) =
if ocp c then
match c.fmt_opts.break_separators.v with `Before -> 0 | `After -> 2
else 4
let constructor_docstring c = if ocp c then 0 else 4
let exp_constraint c = if ocp c then 1 else 2
let assignment_operator_bol c = if ocp c then 0 else 2
let mod_constraint c ~lhs =
if ocp c then match lhs.pmod_desc with Pmod_structure _ -> 0 | _ -> 2
else 2
let mod_unpack_annot c = if ocp c then 0 else 2
let mty_with c = if ocp c then 0 else 2
let type_constr c = if ocp c then 2 else 0
let variant c ~parens = if ocp c && parens then 3 else 2
let variant_type_arg c = if ocp c then 2 else 0
end