Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add SimplifyLambdaFix #176

Merged
merged 23 commits into from
Sep 22, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
added multiline test
  • Loading branch information
DedSec256 authored and auduchinok committed Sep 22, 2020
commit 457daea68c45236ec83680b51a0c85af98e088a3
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
let f x y z = ()

fun x
y ->{caret} f [1,
2] x y
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
let f x y z = ()

f {caret}[1,
2]
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ type ReplaceLambdaTest() =
[<Test>] member x.``Partial application``() = x.DoNamedTest()
[<Test>] member x.``Inner lambda``() = x.DoNamedTest()
[<Test>] member x.``Need parens``() = x.DoNamedTest()
[<Test>] member x.``Multiline``() = x.DoNamedTest()
[<Test; NotAvailable>] member x.``Non application - not available``() = x.DoNamedTest()


Expand Down