Skip to content

Commit ce989d6

Browse files
committed
Psi: commit lost baseline change
1 parent 2df461a commit ce989d6

3 files changed

Lines changed: 18 additions & 18 deletions

File tree

ReSharper.FSharp/test/data/features/navigation/usages/Union case - Field 01.fs.gold

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
## ShowUsagesProvider activity:
22
Async context menu shown `Usages of 'a'`:
3-
TO: [O] U u = U.NewA(|a|: 123); RANGE: (65,66) @ Union case - Field 01.cs
3+
TO: [O] U u = U.NewA(|_a|: 123); RANGE: (65,67) @ Union case - Field 01.cs
44
Menu item (enabled) :
55
icon: UsageOther
6-
text: Class1.Class1 <font color="FF8B0000">U u = U.NewA(**a**: 123);</font><font color="06C"> (5)</font>
6+
text: Class1.Class1 <font color="FF8B0000">U u = U.NewA(**_a**: 123);</font><font color="06C"> (5)</font>
77
tail: <font color="FF6D6D6D">in <Root Namespace></font>
8-
tooltip: U u = U.NewA(**a**: 123);
8+
tooltip: U u = U.NewA(**_a**: 123);
99
Navigation result:
1010
opened file: Union case - Field 01.cs
1111
------------------
1212
public Class1()
1313
{
14-
U u = U.NewA(|CARET|a: 123);
14+
U u = U.NewA(|CARET|_a: 123);
1515
var a = ((U.A) u).a;
1616
}
1717
------------------
1818

19-
TO: [R] var a = ((U.A) u).|a|; RANGE: (97,98) @ Union case - Field 01.cs
19+
TO: [R] var a = ((U.A) u).|a|; RANGE: (98,99) @ Union case - Field 01.cs
2020
Menu item (enabled) :
2121
icon: UsageRead
2222
text: Class1.Class1 <font color="FF8B0000">var a = ((U.A) u).**a**;</font><font color="06C"> (6)</font>
@@ -26,7 +26,7 @@
2626
opened file: Union case - Field 01.cs
2727
------------------
2828
{
29-
U u = U.NewA(a: 123);
29+
U u = U.NewA(_a: 123);
3030
var a = ((U.A) u).|CARET|a;
3131
}
3232
}

ReSharper.FSharp/test/data/features/navigation/usages/Union case - Field 02 - Single case.fs.gold

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
## ShowUsagesProvider activity:
22
Async context menu shown `Usages of 'a'`:
3-
TO: [O] U u = U.NewA(|a|: 123); RANGE: (65,66) @ Union case - Field 02 - Single case.cs
3+
TO: [O] U u = U.NewA(|_a|: 123); RANGE: (65,67) @ Union case - Field 02 - Single case.cs
44
Menu item (enabled) :
55
icon: UsageOther
6-
text: Class1.Class1 <font color="FF8B0000">U u = U.NewA(**a**: 123);</font><font color="06C"> (5)</font>
6+
text: Class1.Class1 <font color="FF8B0000">U u = U.NewA(**_a**: 123);</font><font color="06C"> (5)</font>
77
tail: <font color="FF6D6D6D">in <Root Namespace></font>
8-
tooltip: U u = U.NewA(**a**: 123);
8+
tooltip: U u = U.NewA(**_a**: 123);
99
Navigation result:
1010
opened file: Union case - Field 02 - Single case.cs
1111
------------------
1212
public Class1()
1313
{
14-
U u = U.NewA(|CARET|a: 123);
14+
U u = U.NewA(|CARET|_a: 123);
1515
var a = u.a;
1616
}
1717
------------------
1818

19-
TO: [R] var a = u.|a|; RANGE: (89,90) @ Union case - Field 02 - Single case.cs
19+
TO: [R] var a = u.|a|; RANGE: (90,91) @ Union case - Field 02 - Single case.cs
2020
Menu item (enabled) :
2121
icon: UsageRead
2222
text: Class1.Class1 <font color="FF8B0000">var a = u.**a**;</font><font color="06C"> (6)</font>
@@ -26,7 +26,7 @@
2626
opened file: Union case - Field 02 - Single case.cs
2727
------------------
2828
{
29-
U u = U.NewA(a: 123);
29+
U u = U.NewA(_a: 123);
3030
var a = u.|CARET|a;
3131
}
3232
}

ReSharper.FSharp/test/data/features/navigation/usages/Union case - Field 03 - Struct.fs.gold

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
## ShowUsagesProvider activity:
22
Async context menu shown `Usages of 'a'`:
3-
TO: [O] U u = U.NewA(|a|: 123); RANGE: (65,66) @ Union case - Field 03 - Struct.cs
3+
TO: [O] U u = U.NewA(|_a|: 123); RANGE: (65,67) @ Union case - Field 03 - Struct.cs
44
Menu item (enabled) :
55
icon: UsageOther
6-
text: Class1.Class1 <font color="FF8B0000">U u = U.NewA(**a**: 123);</font><font color="06C"> (5)</font>
6+
text: Class1.Class1 <font color="FF8B0000">U u = U.NewA(**_a**: 123);</font><font color="06C"> (5)</font>
77
tail: <font color="FF6D6D6D">in <Root Namespace></font>
8-
tooltip: U u = U.NewA(**a**: 123);
8+
tooltip: U u = U.NewA(**_a**: 123);
99
Navigation result:
1010
opened file: Union case - Field 03 - Struct.cs
1111
------------------
1212
public Class1()
1313
{
14-
U u = U.NewA(|CARET|a: 123);
14+
U u = U.NewA(|CARET|_a: 123);
1515
var a = u.a;
1616
}
1717
------------------
1818

19-
TO: [R] var a = u.|a|; RANGE: (89,90) @ Union case - Field 03 - Struct.cs
19+
TO: [R] var a = u.|a|; RANGE: (90,91) @ Union case - Field 03 - Struct.cs
2020
Menu item (enabled) :
2121
icon: UsageRead
2222
text: Class1.Class1 <font color="FF8B0000">var a = u.**a**;</font><font color="06C"> (6)</font>
@@ -26,7 +26,7 @@
2626
opened file: Union case - Field 03 - Struct.cs
2727
------------------
2828
{
29-
U u = U.NewA(a: 123);
29+
U u = U.NewA(_a: 123);
3030
var a = u.|CARET|a;
3131
}
3232
}

0 commit comments

Comments
 (0)