File tree 3 files changed +29
-1
lines changed
3 files changed +29
-1
lines changed Original file line number Diff line number Diff line change 1
1
open Parsetree
2
2
3
+ let attrs_string attrs =
4
+ List. map (fun (attr , _ ) -> print_endline attr.Asttypes. txt) attrs
5
+
6
+ let ident_string ident =
7
+ match ident with
8
+ | Longident. Lident v -> v
9
+ | Longident. Ldot (_ , v ) -> v
10
+ | Longident. Lapply _ -> " Lapply"
11
+
12
+ let print_ct ct =
13
+ match ct with
14
+ | {ptyp_desc = Ptyp_constr (ident , _ ); ptyp_attributes = attrs } ->
15
+ let _ =
16
+ print_endline
17
+ (" Ptyp_constr: " ^ ident_string ident.txt ^ " attrs: "
18
+ ^ string_of_int (List. length attrs))
19
+ in
20
+ let _ = attrs_string attrs in
21
+ ()
22
+ | {ptyp_desc = Ptyp_arrow _ ; ptyp_attributes = attrs } ->
23
+ print_endline
24
+ (" Ptyp_arrow: " ^ " attrs: " ^ string_of_int (List. length attrs))
25
+ | {ptyp_desc = Ptyp_variant _ } -> print_endline " Ptyp_variant"
26
+ | _ -> print_endline " Something else"
27
+
3
28
let arrow_type ?(arity = max_int) ct =
4
29
let has_as_attr attrs =
5
30
Ext_list. exists attrs (fun (x , _ ) -> x.Asttypes. txt = " as" )
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ val arrow_type :
8
8
* (Parsetree .attributes * Asttypes .arg_label * Parsetree .core_type ) list
9
9
* Parsetree .core_type
10
10
11
+ val print_ct : Parsetree .core_type -> unit
12
+
11
13
val functor_type :
12
14
Parsetree .module_type ->
13
15
(Parsetree .attributes * string Asttypes .loc * Parsetree .module_type option )
Original file line number Diff line number Diff line change @@ -1591,6 +1591,7 @@ and print_label_declaration ~state (ld : Parsetree.label_declaration) cmt_tbl =
1591
1591
])
1592
1592
1593
1593
and print_typ_expr ~(state : State.t ) (typ_expr : Parsetree.core_type ) cmt_tbl =
1594
+ let parent_has_attrs = Ast_uncurried. core_type_is_uncurried_fun typ_expr && not (typ_expr.ptyp_attributes = [] ) in
1594
1595
let print_arrow ?(arity = max_int) typ_expr =
1595
1596
let attrs_before, args, return_type =
1596
1597
ParsetreeViewer. arrow_type ~arity typ_expr
@@ -1626,7 +1627,7 @@ and print_typ_expr ~(state : State.t) (typ_expr : Parsetree.core_type) cmt_tbl =
1626
1627
[
1627
1628
Doc. group attrs;
1628
1629
Doc. group
1629
- (if has_attrs_before then
1630
+ (if has_attrs_before || parent_has_attrs then
1630
1631
Doc. concat
1631
1632
[
1632
1633
Doc. lparen;
You can’t perform that action at this time.
0 commit comments