Skip to content

Commit e1394d3

Browse files
committed
Fix printing of type declarations in error message where they would be considered recursive by default
rescript-lang#5654
1 parent f73d289 commit e1394d3

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
1313
# 10.1.0-alpha.2
1414

15+
#### :bug: Bug Fix
16+
17+
- Fix printing of type declarations in error message where they would be considered recursive by default
18+
1519
# 10.1.0-alpha.1
1620

1721
#### :boom: Breaking Change

jscomp/ml/printtyp.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -936,7 +936,7 @@ let tree_of_type_declaration id decl rs =
936936
Osig_type (tree_of_type_decl id decl, tree_of_rec rs)
937937

938938
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)
940940

941941
let constructor_arguments ppf a =
942942
let tys = tree_of_constructor_arguments a in

lib/4.06.1/unstable/js_compiler.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33417,7 +33417,7 @@ let tree_of_type_declaration id decl rs =
3341733417
Osig_type (tree_of_type_decl id decl, tree_of_rec rs)
3341833418

3341933419
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)
3342133421

3342233422
let constructor_arguments ppf a =
3342333423
let tys = tree_of_constructor_arguments a in

lib/4.06.1/unstable/js_playground_compiler.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33417,7 +33417,7 @@ let tree_of_type_declaration id decl rs =
3341733417
Osig_type (tree_of_type_decl id decl, tree_of_rec rs)
3341833418

3341933419
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)
3342133421

3342233422
let constructor_arguments ppf a =
3342333423
let tys = tree_of_constructor_arguments a in

lib/4.06.1/whole_compiler.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -209804,7 +209804,7 @@ let tree_of_type_declaration id decl rs =
209804209804
Osig_type (tree_of_type_decl id decl, tree_of_rec rs)
209805209805

209806209806
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)
209808209808

209809209809
let constructor_arguments ppf a =
209810209810
let tys = tree_of_constructor_arguments a in

0 commit comments

Comments
 (0)