1 implementation of IHighlightingService
Microsoft.CodeAnalysis.Features (1)
Highlighting\HighlightingService.cs (1)
19internal class HighlightingService : IHighlightingService
7 references to IHighlightingService
Microsoft.CodeAnalysis.EditorFeatures (2)
KeywordHighlighting\HighlighterViewTaggerProvider.cs (2)
39private readonly IHighlightingService _highlightingService; 53IHighlightingService highlightingService,
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
KeywordHighlighting\AbstractKeywordHighlighterTests.cs (1)
53var service = Assert.IsType<HighlightingService>(workspace.ExportProvider.GetExportedValue<IHighlightingService>());
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (1)
KeywordHighlighting\AbstractKeywordHighlightingTests.vb (1)
38workspace.GetService(Of IHighlightingService)(),
Microsoft.CodeAnalysis.Features (1)
Highlighting\HighlightingService.cs (1)
17[Export(typeof(IHighlightingService))]
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Handler\Highlights\DocumentHighlightHandler.cs (2)
27private readonly IHighlightingService _highlightingService; 32public DocumentHighlightsHandler(IHighlightingService highlightingService, IGlobalOptionService globalOptions)