File tree 5 files changed +8
-4
lines changed
5 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 12
12
13
13
# 10.1.0-alpha.2
14
14
15
+ #### :bug : Bug Fix
16
+
17
+ - Fix printing of type declarations in error message where they would be considered recursive by default
18
+
15
19
# 10.1.0-alpha.1
16
20
17
21
#### :boom : Breaking Change
Original file line number Diff line number Diff line change @@ -936,7 +936,7 @@ let tree_of_type_declaration id decl rs =
936
936
Osig_type (tree_of_type_decl id decl, tree_of_rec rs)
937
937
938
938
let type_declaration id ppf decl =
939
- ! Oprint. out_sig_item ppf (tree_of_type_declaration id decl Trec_first )
939
+ ! Oprint. out_sig_item ppf (tree_of_type_declaration id decl Trec_not )
940
940
941
941
let constructor_arguments ppf a =
942
942
let tys = tree_of_constructor_arguments a in
Original file line number Diff line number Diff line change @@ -33417,7 +33417,7 @@ let tree_of_type_declaration id decl rs =
33417
33417
Osig_type (tree_of_type_decl id decl, tree_of_rec rs)
33418
33418
33419
33419
let type_declaration id ppf decl =
33420
- !Oprint.out_sig_item ppf (tree_of_type_declaration id decl Trec_first )
33420
+ !Oprint.out_sig_item ppf (tree_of_type_declaration id decl Trec_not )
33421
33421
33422
33422
let constructor_arguments ppf a =
33423
33423
let tys = tree_of_constructor_arguments a in
Original file line number Diff line number Diff line change @@ -33417,7 +33417,7 @@ let tree_of_type_declaration id decl rs =
33417
33417
Osig_type (tree_of_type_decl id decl, tree_of_rec rs)
33418
33418
33419
33419
let type_declaration id ppf decl =
33420
- !Oprint.out_sig_item ppf (tree_of_type_declaration id decl Trec_first )
33420
+ !Oprint.out_sig_item ppf (tree_of_type_declaration id decl Trec_not )
33421
33421
33422
33422
let constructor_arguments ppf a =
33423
33423
let tys = tree_of_constructor_arguments a in
Original file line number Diff line number Diff line change @@ -209804,7 +209804,7 @@ let tree_of_type_declaration id decl rs =
209804
209804
Osig_type (tree_of_type_decl id decl, tree_of_rec rs)
209805
209805
209806
209806
let type_declaration id ppf decl =
209807
- !Oprint.out_sig_item ppf (tree_of_type_declaration id decl Trec_first )
209807
+ !Oprint.out_sig_item ppf (tree_of_type_declaration id decl Trec_not )
209808
209808
209809
209809
let constructor_arguments ppf a =
209810
209810
let tys = tree_of_constructor_arguments a in
You can’t perform that action at this time.
0 commit comments