We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ac526e commit 9247327Copy full SHA for 9247327
CHANGELOG.md
@@ -12,6 +12,10 @@
12
13
# 11.0.0-rc.2 (Unreleased)
14
15
+#### :bug: Bug Fix
16
+
17
+- Fixed outcome printer resolution of uncurried config. https://github.com/rescript-lang/rescript-compiler/pull/6353
18
19
# 11.0.0-rc.1
20
21
#### :rocket: New Feature
jscomp/syntax/src/res_outcome_printer.ml
@@ -322,9 +322,7 @@ let rec printOutTypeDoc (outType : Outcometree.out_type) =
322
]
323
324
and printOutArrowType ~uncurried typ =
325
- let uncurried =
326
- if !Config.uncurried <> Legacy then not uncurried else uncurried
327
- in
+ let uncurried = Res_uncurried.getDotted ~uncurried !Config.uncurried in
328
let typArgs, typ = collectArrowArgs typ [] in
329
let args =
330
Doc.join
0 commit comments