3 implementations of IDocumentHighlightsService
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
Internal\DocumentHighlighting\FSharpDocumentHighlightsService.cs (1)
54internal class FSharpDocumentHighlightsService : IDocumentHighlightsService
Microsoft.CodeAnalysis.Features (2)
DocumentHighlighting\AbstractDocumentHighlightsService.cs (1)
25IDocumentHighlightsService
ExternalAccess\VSTypeScript\Api\VSTypeScriptDocumentHighlightsServiceBase.cs (1)
16internal abstract class VSTypeScriptDocumentHighlightsServiceBase : IDocumentHighlightsService
11 references to IDocumentHighlightsService
Microsoft.CodeAnalysis.CSharp.Features (1)
DocumentHighlighting\CSharpDocumentHighlightsService.cs (1)
23[ExportLanguageService(typeof(IDocumentHighlightsService), LanguageNames.CSharp), Shared]
Microsoft.CodeAnalysis.EditorFeatures (2)
ReferenceHighlighting\ReferenceHighlightingViewTaggerProvider.cs (2)
147var service = document.GetLanguageService<IDocumentHighlightsService>();
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
Internal\DocumentHighlighting\FSharpDocumentHighlightsService.cs (1)
53[ExportLanguageService(typeof(IDocumentHighlightsService), LanguageNames.FSharp)]
Microsoft.CodeAnalysis.Features (3)
DocumentHighlighting\IEmbeddedLanguageDocumentHighlighter.cs (2)
11/// <inheritdoc cref="IDocumentHighlightsService"/> 14/// <inheritdoc cref="IDocumentHighlightsService.GetDocumentHighlightsAsync"/>
ExternalAccess\VSTypeScript\Api\VSTypeScriptDocumentHighlightsServiceBase.cs (1)
21Task<ImmutableArray<DocumentHighlights>> IDocumentHighlightsService.GetDocumentHighlightsAsync(
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Handler\Highlights\DocumentHighlightHandler.cs (2)
92var documentHighlightService = document.GetRequiredLanguageService<IDocumentHighlightsService>();
Microsoft.CodeAnalysis.Remote.ServiceHub (2)
Services\DocumentHighlights\RemoteDocumentHighlightsService.cs (2)
43var service = document.GetRequiredLanguageService<IDocumentHighlightsService>();