-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Completion/postfix/with: enable template
* Fixes copyExpr chooser popup highlighting * Don't process fields in multiline expressions
- Loading branch information
1 parent
20df0fb
commit caf2860
Showing
6 changed files
with
85 additions
and
49 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
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
14 changes: 14 additions & 0 deletions
14
ReSharper.FSharp/test/data/features/completion/postfix/With 08.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,14 @@ | ||
// ${COMPLETE_ITEM:with} | ||
module Module | ||
|
||
type R1 = | ||
{ F1: int } | ||
|
||
type R2 = | ||
{ F2: R1 } | ||
|
||
let r1 = { F1 = 1 } | ||
let r2 = { F2 = r1 } | ||
|
||
r2 | ||
.F2.{caret} |
14 changes: 14 additions & 0 deletions
14
ReSharper.FSharp/test/data/features/completion/postfix/With 08.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,14 @@ | ||
// ${COMPLETE_ITEM:with} | ||
module Module | ||
|
||
type R1 = | ||
{ F1: int } | ||
|
||
type R2 = | ||
{ F2: R1 } | ||
|
||
let r1 = { F1 = 1 } | ||
let r2 = { F2 = r1 } | ||
|
||
{ r2 | ||
.F2 with {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