Skip to content

Commit

Permalink
Add newline between multiline infix expression in if expression. Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nojaf committed Apr 3, 2021
1 parent 227d44a commit 90fe9a0
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
37 changes: 37 additions & 0 deletions src/Fantomas.Tests/IfThenElseTests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -2085,3 +2085,40 @@ then
else
()
"""

[<Test>]
let ``multiline infix expression in if expression, 1584`` () =
formatSourceString
false
"""
if sourceCode.EndsWith("\n")
&& not
<| formattedSourceCode.EndsWith(Environment.NewLine) then
return formattedSourceCode + Environment.NewLine
elif
not <| sourceCode.EndsWith("\n")
&& formattedSourceCode.EndsWith(Environment.NewLine)
then
return formattedSourceCode.TrimEnd('\r', '\n')
else
return formattedSourceCode
"""
config
|> prepend newline
|> should
equal
"""
if
sourceCode.EndsWith("\n")
&& not
<| formattedSourceCode.EndsWith(Environment.NewLine)
then
return formattedSourceCode + Environment.NewLine
elif
not <| sourceCode.EndsWith("\n")
&& formattedSourceCode.EndsWith(Environment.NewLine)
then
return formattedSourceCode.TrimEnd('\r', '\n')
else
return formattedSourceCode
"""
2 changes: 1 addition & 1 deletion src/Fantomas/CodePrinter.fs
Original file line number Diff line number Diff line change
Expand Up @@ -2269,7 +2269,7 @@ and genExpr astContext synExpr ctx =
indent
+> sepNln
+> genAlternativeAppWithParenthesis app astContext
+> sepSpace
+> ifElse (noBreakInfixOps.Contains(s)) sepSpace sepNln
+> genInfixOperator s e
+> sepSpace
+> genExpr astContext e2
Expand Down

0 comments on commit 90fe9a0

Please sign in to comment.