Skip to content

Commit 9919f40

Browse files
controlflowauduchinok
authored andcommitted
RIDER-128433 Rider .NET Intentions Previews: rework BaseTestNoShell.GetAttributes<T> impl and semantics, avoid metadata order dependencies, fix tests
GitOrigin-RevId: 82ab08f5f158ec6fb1a9f1416df4e3ca88a144d2
1 parent da37247 commit 9919f40

File tree

80 files changed

+80
-80
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+80
-80
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
open System.Collections.Generic
22

3-
let (KeyValue(s, i{caret})) = KeyValuePair("", 1)
3+
let (KeyValue({spotstart#1}s{spotend#1}, {spotstart#2}i{spotend#2}{caret})) = KeyValuePair("", 1)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
open System.Collections.Generic
22

3-
let (KeyValue(s, i{caret})) = KeyValuePair("", 1)
3+
let (KeyValue({spotstart#1}s{spotend#1}, {spotstart#2}i{spotend#2}{caret})) = KeyValuePair("", 1)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
type T() =
22
let i = 0
33

4-
member this.P with set ((i1, s{caret}): int * string) =
4+
member this.P with set (({spotstart#1}i1{spotend#1}, {spotstart#2}s{spotend#2}{caret}): int * string) =
55
ignore i
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
(1, 2) |> (fun (i, i1{caret}) -> ())
1+
(1, 2) |> (fun ({spotstart#1}i{spotend#1}, {spotstart#2}i1{spotend#2}{caret}) -> ())
22

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
(1, 2) |> (fun (i, i1{caret}) -> ())
1+
(1, 2) |> (fun ({spotstart#1}i{spotend#1}, {spotstart#2}i1{spotend#2}{caret}) -> ())
22

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
let i = 0
22

3-
(1, "") |> (fun (i1, s{caret}) ->
3+
(1, "") |> (fun ({spotstart#1}i1{spotend#1}, {spotstart#2}s{spotend#2}{caret}) ->
44
let _ = i
55
()
66
)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
let i, i1, i2{caret} = 1, 2, 3
1+
let {spotstart#1}i{spotend#1}, {spotstart#2}i1{spotend#2}, {spotstart#3}i2{spotend#3}{caret} = 1, 2, 3
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
let i1 = 1
2-
let i, i2, i3{caret} = 1, 2, 3
2+
let {spotstart#1}i{spotend#1}, {spotstart#2}i2{spotend#2}, {spotstart#3}i3{spotend#3}{caret} = 1, 2, 3
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
type Abbr = int * string
22

3-
let i, s{caret}: Abbr = 1, ""
3+
let {spotstart#1}i{spotend#1}, {spotstart#2}s{spotend#2}{caret}: Abbr = 1, ""
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
do
2-
let i, i1, i2{caret} = 1, 2, 3
2+
let {spotstart#1}i{spotend#1}, {spotstart#2}i1{spotend#2}, {spotstart#3}i2{spotend#3}{caret} = 1, 2, 3
33
()

0 commit comments

Comments
 (0)