[email protected] broken formatting in uncurried mode for functions with _ placeholder args #6146
Closed
Description
Input:
let concatStrings = (string1, string2) => string1 ++ string2
let toIgnoredName = concatStrings("_", _)
Expected:
let concatStrings = (string1, string2) => string1 ++ string2
let toIgnoredName = concatStrings("_", _)
Received:
let concatStrings = (string1, string2) => string1 ++ string2
let toIgnoredName = () => concatStrings("_", _)