-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1b08174
commit b34e6d2
Showing
34 changed files
with
357 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
ReSharper.FSharp/test/data/features/rearrangeCode/Match clause - Last - Down 01.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// ${DIRECTION:Down} | ||
|
||
do | ||
match () with | ||
| a -> () | ||
| b -> (){caret} |
8 changes: 8 additions & 0 deletions
8
ReSharper.FSharp/test/data/features/rearrangeCode/Match clause - Last - Down 01.fs.gold
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// ${DIRECTION:Down} | ||
|
||
do | ||
match () with | ||
| a -> () | ||
| b -> | ||
|
||
() |
7 changes: 7 additions & 0 deletions
7
...rper.FSharp/test/data/features/rearrangeCode/Match clause - Last - Down 02 - Multiline.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// ${DIRECTION:Down} | ||
|
||
do | ||
match () with | ||
| a -> () | ||
| b -> [1 | ||
2]{caret} |
9 changes: 9 additions & 0 deletions
9
...FSharp/test/data/features/rearrangeCode/Match clause - Last - Down 02 - Multiline.fs.gold
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// ${DIRECTION:Down} | ||
|
||
do | ||
match () with | ||
| a -> () | ||
| b -> | ||
|
||
[1 | ||
2] |
7 changes: 7 additions & 0 deletions
7
...er.FSharp/test/data/features/rearrangeCode/Match clause - Last - Down 03 - Lambda body.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// ${DIRECTION:Down} | ||
|
||
do | ||
match () with | ||
| a -> () | ||
| b -> fun _ -> | ||
(){caret} |
7 changes: 7 additions & 0 deletions
7
...FSharp/test/data/features/rearrangeCode/Match clause - Last - Down 04 - Add empty line.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// ${DIRECTION:Down} | ||
|
||
do | ||
match () with | ||
| a -> () | ||
| b -> | ||
(){caret} |
8 changes: 8 additions & 0 deletions
8
...p/test/data/features/rearrangeCode/Match clause - Last - Down 04 - Add empty line.fs.gold
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// ${DIRECTION:Down} | ||
|
||
do | ||
match () with | ||
| a -> () | ||
| b -> | ||
|
||
() |
8 changes: 8 additions & 0 deletions
8
...FSharp/test/data/features/rearrangeCode/Match clause - Last - Down 05 - Not applicable.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// ${DIRECTION:Down} | ||
|
||
do | ||
match () with | ||
| a -> () | ||
| b -> | ||
|
||
(){caret} |
8 changes: 8 additions & 0 deletions
8
...p/test/data/features/rearrangeCode/Match clause - Last - Down 05 - Not applicable.fs.gold
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// ${DIRECTION:Down} | ||
|
||
do | ||
match () with | ||
| a -> () | ||
| b -> | ||
|
||
() |
7 changes: 7 additions & 0 deletions
7
ReSharper.FSharp/test/data/features/rearrangeCode/Match clause - Last - Down 06 - App.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// ${DIRECTION:Down} | ||
|
||
do | ||
match () with | ||
| a -> () | ||
| b -> ignore | ||
(){caret} |
9 changes: 9 additions & 0 deletions
9
...arper.FSharp/test/data/features/rearrangeCode/Match clause - Last - Down 06 - App.fs.gold
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// ${DIRECTION:Down} | ||
|
||
do | ||
match () with | ||
| a -> () | ||
| b -> | ||
|
||
ignore | ||
() |
7 changes: 7 additions & 0 deletions
7
...arper.FSharp/test/data/features/rearrangeCode/Match clause - Last - Down 07 - New line.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// ${DIRECTION:Down} | ||
|
||
do | ||
match () with | ||
| a -> () | ||
| b -> | ||
(){caret} |
8 changes: 8 additions & 0 deletions
8
....FSharp/test/data/features/rearrangeCode/Match clause - Last - Down 07 - New line.fs.gold
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// ${DIRECTION:Down} | ||
|
||
do | ||
match () with | ||
| a -> () | ||
| b -> | ||
|
||
() |
7 changes: 7 additions & 0 deletions
7
...arp/test/data/features/rearrangeCode/Match clause - Last - Down 08 - Operator deindent.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// ${DIRECTION:Down} | ||
|
||
do | ||
match () with | ||
| a -> () | ||
| b -> 1{caret} | ||
+ 1 |
9 changes: 9 additions & 0 deletions
9
...est/data/features/rearrangeCode/Match clause - Last - Down 08 - Operator deindent.fs.gold
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// ${DIRECTION:Down} | ||
|
||
do | ||
match () with | ||
| a -> () | ||
| b -> | ||
|
||
1 | ||
+ 1 |
6 changes: 6 additions & 0 deletions
6
...arp/test/data/features/rearrangeCode/Match clause - Last - Down 09 - Operator deindent.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// ${DIRECTION:Down} | ||
|
||
match () with | ||
| a -> () | ||
| b -> 1{caret} | ||
+ 1 |
8 changes: 8 additions & 0 deletions
8
...est/data/features/rearrangeCode/Match clause - Last - Down 09 - Operator deindent.fs.gold
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// ${DIRECTION:Down} | ||
|
||
match () with | ||
| a -> () | ||
| b -> | ||
|
||
1 | ||
+ 1 |
8 changes: 8 additions & 0 deletions
8
...rper.FSharp/test/data/features/rearrangeCode/Match clause - Last - Up 01 - Single line.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// ${DIRECTION:Up} | ||
|
||
do | ||
match () with | ||
| a -> () | ||
| b -> | ||
|
||
(){caret} |
6 changes: 6 additions & 0 deletions
6
...FSharp/test/data/features/rearrangeCode/Match clause - Last - Up 01 - Single line.fs.gold
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// ${DIRECTION:Up} | ||
|
||
do | ||
match () with | ||
| a -> () | ||
| b -> () |
5 changes: 5 additions & 0 deletions
5
ReSharper.FSharp/test/data/features/rearrangeCode/Match clause - Last - Up 02.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
// ${DIRECTION:Up} | ||
|
||
match () with | ||
| a -> () | ||
| b -> (){caret} |
5 changes: 5 additions & 0 deletions
5
ReSharper.FSharp/test/data/features/rearrangeCode/Match clause - Last - Up 02.fs.gold
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
// ${DIRECTION:Up} | ||
|
||
match () with | ||
| b -> () | ||
| a -> () |
9 changes: 9 additions & 0 deletions
9
ReSharper.FSharp/test/data/features/rearrangeCode/Match clause - Last - Up 03 - Multiline.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// ${DIRECTION:Up} | ||
|
||
do | ||
match () with | ||
| a -> () | ||
| b -> | ||
|
||
[1 | ||
2]{caret} |
8 changes: 8 additions & 0 deletions
8
...r.FSharp/test/data/features/rearrangeCode/Match clause - Last - Up 03 - Multiline.fs.gold
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// ${DIRECTION:Up} | ||
|
||
do | ||
match () with | ||
| a -> () | ||
| b -> | ||
[1 | ||
2] |
9 changes: 9 additions & 0 deletions
9
ReSharper.FSharp/test/data/features/rearrangeCode/Match clause - Last - Up 05 - App.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// ${DIRECTION:Up} | ||
|
||
do | ||
match () with | ||
| a -> () | ||
| b -> | ||
|
||
ignore | ||
(){caret} |
Oops, something went wrong.