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/EditorFeatures/CSharpTest/Completion/CompletionProviders/SymbolCompletionProviderTests_NoInteractive.cs
+35
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,12 @@
1
1
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
Copy file name to clipboardExpand all lines: src/EditorFeatures/Core/SymbolSearch/SymbolSearchUpdateEngineFactory.cs
+7-6
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
1
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
2
2
3
+
usingSystem.Collections.Generic;
3
4
usingSystem.Collections.Immutable;
4
5
usingSystem.Linq;
5
6
usingSystem.Threading;
@@ -122,11 +123,11 @@ public async Task<ImmutableArray<PackageWithTypeResult>> FindPackagesWithTypeAsy
Copy file name to clipboardExpand all lines: src/Features/Core/Portable/AddImport/AddImportFixData.cs
+3-2
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
2
2
3
3
usingSystem;
4
+
usingSystem.Collections.Generic;
4
5
usingSystem.Collections.Immutable;
5
6
usingSystem.Linq;
6
7
usingMicrosoft.CodeAnalysis.CodeActions;
@@ -19,7 +20,7 @@ internal class AddImportFixData
19
20
/// May be empty for fixes that don't need to add an import and only do something like
20
21
/// add a project/metadata reference.
21
22
/// </summary>
22
-
publicImmutableArray<TextChange>TextChanges{get;}
23
+
publicIList<TextChange>TextChanges{get;}
23
24
24
25
/// <summary>
25
26
/// String to display in the lightbulb menu.
@@ -29,7 +30,7 @@ internal class AddImportFixData
29
30
/// <summary>
30
31
/// Tags that control what glyph is displayed in the lightbulb menu.
31
32
/// </summary>
32
-
publicImmutableArray<string>Tags{get;privateset;}
33
+
publicIList<string>Tags{get;privateset;}
33
34
34
35
/// <summary>
35
36
/// The priority this item should have in the lightbulb list.
Copy file name to clipboardExpand all lines: src/Features/Core/Portable/AddImport/Remote/AbstractAddImportFeatureService_Remote.cs
+6-5
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
0 commit comments