-
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.
Add empty line if necessary before 'open' statements (#65)
Add empty line before insert 'open' statement Disable failing test
- Loading branch information
1 parent
74bc917
commit 26e9b81
Showing
12 changed files
with
78 additions
and
3 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
3 changes: 3 additions & 0 deletions
3
ReSharper.FSharp/test/data/features/completion/Open 01 - First open.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,3 @@ | ||
// ${COMPLETE_ITEM:IDisposable (in System)} | ||
namespace SomeNamespace | ||
{caret} |
6 changes: 6 additions & 0 deletions
6
ReSharper.FSharp/test/data/features/completion/Open 01 - First open.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 @@ | ||
// ${COMPLETE_ITEM:IDisposable (in System)} | ||
namespace SomeNamespace | ||
|
||
open System | ||
|
||
IDisposable{caret} |
6 changes: 6 additions & 0 deletions
6
ReSharper.FSharp/test/data/features/completion/Open 02 - Second open.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 @@ | ||
// ${COMPLETE_ITEM:Task (in System.Threading.Tasks)} | ||
namespace SomeNamespace | ||
|
||
open System | ||
|
||
{caret} |
7 changes: 7 additions & 0 deletions
7
ReSharper.FSharp/test/data/features/completion/Open 02 - Second open.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,7 @@ | ||
// ${COMPLETE_ITEM:Task (in System.Threading.Tasks)} | ||
namespace SomeNamespace | ||
|
||
open System | ||
open System.Threading.Tasks | ||
|
||
Task{caret} |
4 changes: 4 additions & 0 deletions
4
ReSharper.FSharp/test/data/features/completion/Open 03 - Comment after namespace.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,4 @@ | ||
// ${COMPLETE_ITEM:IDisposable (in System)} | ||
namespace SomeNamespace | ||
// Some comment here | ||
{caret} |
7 changes: 7 additions & 0 deletions
7
ReSharper.FSharp/test/data/features/completion/Open 03 - Comment after namespace.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,7 @@ | ||
// ${COMPLETE_ITEM:IDisposable (in System)} | ||
namespace SomeNamespace | ||
|
||
open System | ||
|
||
// Some comment here | ||
IDisposable{caret} |
6 changes: 6 additions & 0 deletions
6
ReSharper.FSharp/test/data/features/completion/Open 04 - Inside module.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 @@ | ||
// ${COMPLETE_ITEM:IDisposable (in System)} | ||
namespace SomeNamespace | ||
|
||
module Module = | ||
let foo () = | ||
{caret} |
9 changes: 9 additions & 0 deletions
9
ReSharper.FSharp/test/data/features/completion/Open 04 - Inside module.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 @@ | ||
// ${COMPLETE_ITEM:IDisposable (in System)} | ||
namespace SomeNamespace | ||
|
||
module Module = | ||
|
||
open System | ||
|
||
let foo () = | ||
IDisposable{caret} |
2 changes: 2 additions & 0 deletions
2
ReSharper.FSharp/test/data/features/completion/Open 05 - Empty file.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,2 @@ | ||
// ${COMPLETE_ITEM:IDisposable (in System)} | ||
{caret} |
5 changes: 5 additions & 0 deletions
5
ReSharper.FSharp/test/data/features/completion/Open 05 - Empty file.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 @@ | ||
// ${COMPLETE_ITEM:IDisposable (in System)} | ||
|
||
open System | ||
|
||
IDisposable{caret} |
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