Skip to content

Commit 487d77a

Browse files
committed
Update baselines
1 parent 68c475c commit 487d77a

File tree

1,877 files changed

+8403
-8403
lines changed

Some content is hidden

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

1,877 files changed

+8403
-8403
lines changed

src/Compiler/Microsoft.AspNetCore.Razor.Language/test/Extensions/DesignTimeDirectiveTargetExtensionTest.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public void WriteDesignTimeDirective_WithTypeToken_WritesLambda()
5959
Assert.Equal(
6060
@"#pragma warning disable 219
6161
private void __RazorDirectiveTokenHelpers__() {
62-
((System.Action)(() => {
62+
((global::System.Action)(() => {
6363
#nullable restore
6464
#line 1 ""test.cshtml""
6565
System.String __typeHelper = default!;
@@ -100,7 +100,7 @@ public void WriteDesignTimeDirective_WithNamespaceToken_WritesLambda()
100100
Assert.Equal(
101101
@"#pragma warning disable 219
102102
private void __RazorDirectiveTokenHelpers__() {
103-
((System.Action)(() => {
103+
((global::System.Action)(() => {
104104
#nullable restore
105105
#line 1 ""test.cshtml""
106106
global::System.Object __typeHelper = nameof(System.Collections.Generic);
@@ -141,7 +141,7 @@ public void WriteDesignTimeDirective_WithMemberToken_WritesLambda()
141141
Assert.Equal(
142142
@"#pragma warning disable 219
143143
private void __RazorDirectiveTokenHelpers__() {
144-
((System.Action)(() => {
144+
((global::System.Action)(() => {
145145
#nullable restore
146146
#line 1 ""test.cshtml""
147147
global::System.Object Foo = null!;
@@ -189,7 +189,7 @@ public void WriteDesignTimeDirective_WithStringToken_WritesLambda()
189189
Assert.Equal(
190190
@"#pragma warning disable 219
191191
private void __RazorDirectiveTokenHelpers__() {
192-
((System.Action)(() => {
192+
((global::System.Action)(() => {
193193
#nullable restore
194194
#line 1 ""test.cshtml""
195195
global::System.Object __typeHelper = ""Value"";
@@ -199,7 +199,7 @@ private void __RazorDirectiveTokenHelpers__() {
199199
#nullable disable
200200
}
201201
))();
202-
((System.Action)(() => {
202+
((global::System.Action)(() => {
203203
#nullable restore
204204
#line 1 ""test.cshtml""
205205
global::System.Object __typeHelper = ""Value"";
@@ -240,7 +240,7 @@ public void WriteDesignTimeDirective_WithBooleanToken_WritesLambda()
240240
Assert.Equal(
241241
@"#pragma warning disable 219
242242
private void __RazorDirectiveTokenHelpers__() {
243-
((System.Action)(() => {
243+
((global::System.Action)(() => {
244244
#nullable restore
245245
#line 1 ""test.cshtml""
246246
global::System.Boolean __typeHelper = true;

src/Compiler/Microsoft.AspNetCore.Razor.Language/test/IntegrationTests/ComponentDeclarationIntegrationTest.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,11 @@ public void DeclarationConfiguration_FunctionsBlockHasLineMappings_MappingsApply
117117
namespace Test
118118
{
119119
#line hidden
120-
using System;
121-
using System.Collections.Generic;
122-
using System.Linq;
123-
using System.Threading.Tasks;
124-
using Microsoft.AspNetCore.Components;
120+
using global::System;
121+
using global::System.Collections.Generic;
122+
using global::System.Linq;
123+
using global::System.Threading.Tasks;
124+
using global::Microsoft.AspNetCore.Components;
125125
public partial class TestComponent : global::Microsoft.AspNetCore.Components.ComponentBase
126126
{
127127
#pragma warning disable 1998

src/Compiler/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/AddTagHelperDirective_DesignTime.codegen.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public class TestFiles_IntegrationTests_CodeGenerationIntegrationTest_AddTagHelp
77
{
88
#pragma warning disable 219
99
private void __RazorDirectiveTokenHelpers__() {
10-
((System.Action)(() => {
10+
((global::System.Action)(() => {
1111
#nullable restore
1212
#line 1 "TestFiles/IntegrationTests/CodeGenerationIntegrationTest/AddTagHelperDirective.cshtml"
1313
global::System.Object __typeHelper = "*, TestAssembly";
@@ -20,7 +20,7 @@ private void __RazorDirectiveTokenHelpers__() {
2020
}
2121
#pragma warning restore 219
2222
#pragma warning disable 0414
23-
private static System.Object __o = null;
23+
private static object __o = null;
2424
#pragma warning restore 0414
2525
#pragma warning disable 1998
2626
public async System.Threading.Tasks.Task ExecuteAsync()

src/Compiler/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/AddTagHelperDirective_DesignTime.ir.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
CSharpCode -
77
IntermediateToken - - CSharp - #pragma warning disable 0414
88
CSharpCode -
9-
IntermediateToken - - CSharp - private static System.Object __o = null;
9+
IntermediateToken - - CSharp - private static object __o = null;
1010
CSharpCode -
1111
IntermediateToken - - CSharp - #pragma warning restore 0414
1212
MethodDeclaration - - public async - System.Threading.Tasks.Task - ExecuteAsync
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Source Location: (14:0,14 [17] TestFiles/IntegrationTests/CodeGenerationIntegrationTest/AddTagHelperDirective.cshtml)
22
|"*, TestAssembly"|
3-
Generated Location: (543:12,37 [17] )
3+
Generated Location: (551:12,37 [17] )
44
|"*, TestAssembly"|
55

src/Compiler/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/AttributeDirective_DesignTime.codegen.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ private void __RazorDirectiveTokenHelpers__() {
3838
}
3939
#pragma warning restore 219
4040
#pragma warning disable 0414
41-
private static System.Object __o = null;
41+
private static object __o = null;
4242
#pragma warning restore 0414
4343
#pragma warning disable 1998
4444
public async System.Threading.Tasks.Task ExecuteAsync()

src/Compiler/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/AttributeDirective_DesignTime.ir.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
CSharpCode -
1818
IntermediateToken - - CSharp - #pragma warning disable 0414
1919
CSharpCode -
20-
IntermediateToken - - CSharp - private static System.Object __o = null;
20+
IntermediateToken - - CSharp - private static object __o = null;
2121
CSharpCode -
2222
IntermediateToken - - CSharp - #pragma warning restore 0414
2323
MethodDeclaration - - public async - System.Threading.Tasks.Task - ExecuteAsync

src/Compiler/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/AttributeTargetingTagHelpers_DesignTime.codegen.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class TestFiles_IntegrationTests_CodeGenerationIntegrationTest_AttributeT
1616
private global::TestNamespace.InputTagHelper2 __TestNamespace_InputTagHelper2;
1717
#pragma warning disable 219
1818
private void __RazorDirectiveTokenHelpers__() {
19-
((System.Action)(() => {
19+
((global::System.Action)(() => {
2020
#nullable restore
2121
#line 1 "TestFiles/IntegrationTests/CodeGenerationIntegrationTest/AttributeTargetingTagHelpers.cshtml"
2222
global::System.Object __typeHelper = "*, TestAssembly";
@@ -29,7 +29,7 @@ private void __RazorDirectiveTokenHelpers__() {
2929
}
3030
#pragma warning restore 219
3131
#pragma warning disable 0414
32-
private static System.Object __o = null;
32+
private static object __o = null;
3333
#pragma warning restore 0414
3434
#pragma warning disable 1998
3535
public async System.Threading.Tasks.Task ExecuteAsync()

src/Compiler/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/AttributeTargetingTagHelpers_DesignTime.ir.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
CSharpCode -
1212
IntermediateToken - - CSharp - #pragma warning disable 0414
1313
CSharpCode -
14-
IntermediateToken - - CSharp - private static System.Object __o = null;
14+
IntermediateToken - - CSharp - private static object __o = null;
1515
CSharpCode -
1616
IntermediateToken - - CSharp - #pragma warning restore 0414
1717
MethodDeclaration - - public async - System.Threading.Tasks.Task - ExecuteAsync
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
Source Location: (14:0,14 [15] TestFiles/IntegrationTests/CodeGenerationIntegrationTest/AttributeTargetingTagHelpers.cshtml)
22
|*, TestAssembly|
3-
Generated Location: (1310:21,38 [15] )
3+
Generated Location: (1318:21,38 [15] )
44
|*, TestAssembly|
55

66
Source Location: (187:5,36 [4] TestFiles/IntegrationTests/CodeGenerationIntegrationTest/AttributeTargetingTagHelpers.cshtml)
77
|true|
8-
Generated Location: (2403:44,42 [4] )
8+
Generated Location: (2404:44,42 [4] )
99
|true|
1010

1111
Source Location: (233:6,36 [4] TestFiles/IntegrationTests/CodeGenerationIntegrationTest/AttributeTargetingTagHelpers.cshtml)
1212
|true|
13-
Generated Location: (3170:57,42 [4] )
13+
Generated Location: (3171:57,42 [4] )
1414
|true|
1515

0 commit comments

Comments
 (0)