You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/Thinktecture.Runtime.Extensions.SourceGenerator.Tests/SourceGeneratorTests/RegularUnionSourceGeneratorTests.Should_handle_special_chars.verified.txt
+15-15Lines changed: 15 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -25,15 +25,15 @@ abstract partial class _1TestUnionWithSpecialChars :
25
25
/// <summary>
26
26
/// Executes an action depending on the current type.
27
27
/// </summary>
28
-
/// <param name="_1Test">The action to execute if the current type is <see cref="global::Thinktecture.Tests._1TestUnionWithSpecialChars._1Test"/>.</param>
28
+
/// <param name="_1test">The action to execute if the current type is <see cref="global::Thinktecture.Tests._1TestUnionWithSpecialChars._1Test"/>.</param>
case global::Thinktecture.Tests._1TestUnionWithSpecialChars._1Test value:
36
-
@_1Test(value);
36
+
@_1test(value);
37
37
return;
38
38
default:
39
39
throw new global::System.ArgumentOutOfRangeException($"Unexpected type '{this.GetType().FullName}'.");
@@ -46,19 +46,19 @@ abstract partial class _1TestUnionWithSpecialChars :
46
46
/// Executes an action depending on the current type.
47
47
/// </summary>
48
48
/// <param name="state">State to be passed to the callbacks.</param>
49
-
/// <param name="_1Test">The action to execute if the current type is <see cref="global::Thinktecture.Tests._1TestUnionWithSpecialChars._1Test"/>.</param>
49
+
/// <param name="_1test">The action to execute if the current type is <see cref="global::Thinktecture.Tests._1TestUnionWithSpecialChars._1Test"/>.</param>
case global::Thinktecture.Tests._1TestUnionWithSpecialChars._1Test value:
61
-
@_1Test(@state, value);
61
+
@_1test(@state, value);
62
62
return;
63
63
default:
64
64
throw new global::System.ArgumentOutOfRangeException($"Unexpected type '{this.GetType().FullName}'.");
@@ -70,18 +70,18 @@ abstract partial class _1TestUnionWithSpecialChars :
70
70
/// <summary>
71
71
/// Executes a function depending on the current type.
72
72
/// </summary>
73
-
/// <param name="_1Test">The function to execute if the current type is <see cref="global::Thinktecture.Tests._1TestUnionWithSpecialChars._1Test"/>.</param>
73
+
/// <param name="_1test">The function to execute if the current type is <see cref="global::Thinktecture.Tests._1TestUnionWithSpecialChars._1Test"/>.</param>
case global::Thinktecture.Tests._1TestUnionWithSpecialChars._1Test value:
84
-
return @_1Test(value);
84
+
return @_1test(value);
85
85
default:
86
86
throw new global::System.ArgumentOutOfRangeException($"Unexpected type '{this.GetType().FullName}'.");
87
87
}
@@ -93,11 +93,11 @@ abstract partial class _1TestUnionWithSpecialChars :
93
93
/// Executes a function depending on the current type.
94
94
/// </summary>
95
95
/// <param name="state">State to be passed to the callbacks.</param>
96
-
/// <param name="_1Test">The function to execute if the current type is <see cref="global::Thinktecture.Tests._1TestUnionWithSpecialChars._1Test"/>.</param>
96
+
/// <param name="_1test">The function to execute if the current type is <see cref="global::Thinktecture.Tests._1TestUnionWithSpecialChars._1Test"/>.</param>
@@ -106,7 +106,7 @@ abstract partial class _1TestUnionWithSpecialChars :
106
106
switch (this)
107
107
{
108
108
case global::Thinktecture.Tests._1TestUnionWithSpecialChars._1Test value:
109
-
return @_1Test(@state, value);
109
+
return @_1test(@state, value);
110
110
default:
111
111
throw new global::System.ArgumentOutOfRangeException($"Unexpected type '{this.GetType().FullName}'.");
112
112
}
@@ -117,18 +117,18 @@ abstract partial class _1TestUnionWithSpecialChars :
117
117
/// <summary>
118
118
/// Maps current instance to an instance of type <typeparamref name="TResult"/>.
119
119
/// </summary>
120
-
/// <param name="_1Test">The instance to return if the current type is <see cref="global::Thinktecture.Tests._1TestUnionWithSpecialChars._1Test"/>.</param>
120
+
/// <param name="_1test">The instance to return if the current type is <see cref="global::Thinktecture.Tests._1TestUnionWithSpecialChars._1Test"/>.</param>
0 commit comments