Skip to content

Commit 61fa889

Browse files
committed
C#: Update the format test expected output as the params keyword is now extracted correctly.
1 parent 6a0d56a commit 61fa889

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,68 @@
1-
| Console | Write(string, ReadOnlySpan<object>) | arg |
21
| Console | Write(string, object) | arg0 |
32
| Console | Write(string, object, object) | arg0 |
43
| Console | Write(string, object, object) | arg1 |
54
| Console | Write(string, object, object, object) | arg0 |
65
| Console | Write(string, object, object, object) | arg1 |
76
| Console | Write(string, object, object, object) | arg2 |
87
| Console | Write(string, params Object[]) | arg |
9-
| Console | WriteLine(string, ReadOnlySpan<object>) | arg |
8+
| Console | Write(string, params ReadOnlySpan<object>) | arg |
109
| Console | WriteLine(string, object) | arg0 |
1110
| Console | WriteLine(string, object, object) | arg0 |
1211
| Console | WriteLine(string, object, object) | arg1 |
1312
| Console | WriteLine(string, object, object, object) | arg0 |
1413
| Console | WriteLine(string, object, object, object) | arg1 |
1514
| Console | WriteLine(string, object, object, object) | arg2 |
1615
| Console | WriteLine(string, params Object[]) | arg |
16+
| Console | WriteLine(string, params ReadOnlySpan<object>) | arg |
1717
| Debug | Assert(bool, string, string, params Object[]) | args |
1818
| Debug | Print(string, params Object[]) | args |
1919
| Debug | WriteLine(string, params Object[]) | args |
20-
| StringBuilder | AppendFormat(IFormatProvider, string, ReadOnlySpan<object>) | args |
2120
| StringBuilder | AppendFormat(IFormatProvider, string, object) | arg0 |
2221
| StringBuilder | AppendFormat(IFormatProvider, string, object, object) | arg0 |
2322
| StringBuilder | AppendFormat(IFormatProvider, string, object, object) | arg1 |
2423
| StringBuilder | AppendFormat(IFormatProvider, string, object, object, object) | arg0 |
2524
| StringBuilder | AppendFormat(IFormatProvider, string, object, object, object) | arg1 |
2625
| StringBuilder | AppendFormat(IFormatProvider, string, object, object, object) | arg2 |
2726
| StringBuilder | AppendFormat(IFormatProvider, string, params Object[]) | args |
28-
| StringBuilder | AppendFormat(string, ReadOnlySpan<object>) | args |
27+
| StringBuilder | AppendFormat(IFormatProvider, string, params ReadOnlySpan<object>) | args |
2928
| StringBuilder | AppendFormat(string, object) | arg0 |
3029
| StringBuilder | AppendFormat(string, object, object) | arg0 |
3130
| StringBuilder | AppendFormat(string, object, object) | arg1 |
3231
| StringBuilder | AppendFormat(string, object, object, object) | arg0 |
3332
| StringBuilder | AppendFormat(string, object, object, object) | arg1 |
3433
| StringBuilder | AppendFormat(string, object, object, object) | arg2 |
3534
| StringBuilder | AppendFormat(string, params Object[]) | args |
35+
| StringBuilder | AppendFormat(string, params ReadOnlySpan<object>) | args |
3636
| Strings | MyStringFormat(string, params Object[]) | args |
37-
| TextWriter | Write(string, ReadOnlySpan<object>) | arg |
3837
| TextWriter | Write(string, object) | arg0 |
3938
| TextWriter | Write(string, object, object) | arg0 |
4039
| TextWriter | Write(string, object, object) | arg1 |
4140
| TextWriter | Write(string, object, object, object) | arg0 |
4241
| TextWriter | Write(string, object, object, object) | arg1 |
4342
| TextWriter | Write(string, object, object, object) | arg2 |
4443
| TextWriter | Write(string, params Object[]) | arg |
45-
| TextWriter | WriteLine(string, ReadOnlySpan<object>) | arg |
44+
| TextWriter | Write(string, params ReadOnlySpan<object>) | arg |
4645
| TextWriter | WriteLine(string, object) | arg0 |
4746
| TextWriter | WriteLine(string, object, object) | arg0 |
4847
| TextWriter | WriteLine(string, object, object) | arg1 |
4948
| TextWriter | WriteLine(string, object, object, object) | arg0 |
5049
| TextWriter | WriteLine(string, object, object, object) | arg1 |
5150
| TextWriter | WriteLine(string, object, object, object) | arg2 |
5251
| TextWriter | WriteLine(string, params Object[]) | arg |
53-
| string | Format(IFormatProvider, string, ReadOnlySpan<object>) | args |
52+
| TextWriter | WriteLine(string, params ReadOnlySpan<object>) | arg |
5453
| string | Format(IFormatProvider, string, object) | arg0 |
5554
| string | Format(IFormatProvider, string, object, object) | arg0 |
5655
| string | Format(IFormatProvider, string, object, object) | arg1 |
5756
| string | Format(IFormatProvider, string, object, object, object) | arg0 |
5857
| string | Format(IFormatProvider, string, object, object, object) | arg1 |
5958
| string | Format(IFormatProvider, string, object, object, object) | arg2 |
6059
| string | Format(IFormatProvider, string, params Object[]) | args |
61-
| string | Format(string, ReadOnlySpan<object>) | args |
60+
| string | Format(IFormatProvider, string, params ReadOnlySpan<object>) | args |
6261
| string | Format(string, object) | arg0 |
6362
| string | Format(string, object, object) | arg0 |
6463
| string | Format(string, object, object) | arg1 |
6564
| string | Format(string, object, object, object) | arg0 |
6665
| string | Format(string, object, object, object) | arg1 |
6766
| string | Format(string, object, object, object) | arg2 |
6867
| string | Format(string, params Object[]) | args |
68+
| string | Format(string, params ReadOnlySpan<object>) | args |

0 commit comments

Comments
 (0)