-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20554 from DustinCampbell/new-quick-info-api
New Quick Info API
- Loading branch information
Showing
120 changed files
with
1,960 additions
and
1,772 deletions.
There are no files selected for viewing
21 changes: 0 additions & 21 deletions
21
src/EditorFeatures/CSharp/QuickInfo/SemanticQuickInfoProvider.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 2 additions & 3 deletions
5
src/EditorFeatures/Core.Wpf/Completion/Presentation/ImageMonikers.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. | ||
|
||
using System.Collections.Immutable; | ||
using Microsoft.CodeAnalysis.Editor.Shared.Extensions; | ||
using Microsoft.CodeAnalysis.Editor.Wpf; | ||
using Microsoft.VisualStudio.Imaging.Interop; | ||
|
||
namespace Microsoft.CodeAnalysis.Editor.Implementation.IntelliSense.Completion.Presentation | ||
{ | ||
internal static class ImageMonikers | ||
{ | ||
public static ImageMoniker GetImageMoniker(ImmutableArray<string> tags) | ||
public static ImageMoniker GetFirstImageMoniker(ImmutableArray<string> tags) | ||
{ | ||
return tags.GetGlyph().GetImageMoniker(); | ||
return tags.GetFirstGlyph().GetImageMoniker(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.