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: src/Razor/test/Microsoft.AspNetCore.Razor.LanguageServer.Test/CodeActions/Razor/ExtractToNewComponentCodeActionProviderTest.cs
+21-6
Original file line number
Diff line number
Diff line change
@@ -2,10 +2,6 @@
2
2
// Licensed under the MIT license. See License.txt in the project root for license information.
3
3
4
4
usingSystem;
5
-
usingSystem.Collections.Generic;
6
-
usingSystem.Collections.Immutable;
7
-
usingSystem.Linq;
8
-
usingSystem.Text;
9
5
usingSystem.Text.Json;
10
6
usingSystem.Threading.Tasks;
11
7
usingMicrosoft.AspNetCore.Razor.Language;
@@ -179,8 +175,8 @@ public async Task Handle_MultiPointSelectionWithEndAfterElement_ReturnsCurrentEl
179
175
<PageTitle>Home</PageTitle>
180
176
181
177
<div id="parent">
182
-
[|<div>
183
-
$$<h1>Div a title</h1>
178
+
[|$$<div>
179
+
<h1>Div a title</h1>
184
180
<p>Div a par</p>
185
181
</div>
186
182
<div>
@@ -205,6 +201,8 @@ public async Task Handle_MultiPointSelectionWithEndAfterElement_ReturnsCurrentEl
0 commit comments