1 implementation of IFixAllSpanMappingService
Microsoft.CodeAnalysis.Workspaces (1)
LanguageServices\FixAllSpanMappingService\AbstractFixAllSpanMappingService.cs (1)
18internal abstract class AbstractFixAllSpanMappingService : IFixAllSpanMappingService
6 references to IFixAllSpanMappingService
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
LanguageServices\FixAllSpanMappingService\CSharpFixAllSpanMappingService.cs (1)
19[ExportLanguageService(typeof(IFixAllSpanMappingService), LanguageNames.CSharp), Shared]
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Features\UnifiedSuggestions\UnifiedSuggestedActionsSource.cs (2)
241var spanMappingService = document.GetLanguageService<IFixAllSpanMappingService>();
Microsoft.CodeAnalysis.Workspaces (3)
CodeFixes\FixAllOccurrences\FixAllContextHelper.cs (1)
51document.GetLanguageService<IFixAllSpanMappingService>() is { } spanMappingService)
CodeRefactorings\FixAllOccurences\FixAllState.cs (2)
97var spanMappingService = Document.GetLanguageService<IFixAllSpanMappingService>();