1 implementation of IFormattingInteractionService
Microsoft.CodeAnalysis.EditorFeatures (1)
ExternalAccess\VSTypeScript\VSTypeScriptFormattingInteractionService.cs (1)
21internal sealed class VSTypeScriptFormattingInteractionService(IVSTypeScriptFormattingInteractionService implementation) : IFormattingInteractionService
7 references to IFormattingInteractionService
Microsoft.CodeAnalysis.EditorFeatures (7)
ExternalAccess\VSTypeScript\VSTypeScriptFormattingInteractionService.cs (1)
18[ExportLanguageService(typeof(IFormattingInteractionService), InternalLanguageNames.TypeScript), Shared]
Formatting\FormatCommandHandler.cs (2)
73var formattingService = document.GetRequiredLanguageService<IFormattingInteractionService>(); 138var service = document.GetLanguageService<IFormattingInteractionService>();
Formatting\FormatCommandHandler.FormatDocument.cs (1)
30var formattingService = document.GetLanguageService<IFormattingInteractionService>();
Formatting\FormatCommandHandler.FormatSelection.cs (1)
36var formattingService = document.GetLanguageService<IFormattingInteractionService>();
Formatting\FormatCommandHandler.Paste.cs (1)
71var formattingService = document.GetLanguageService<IFormattingInteractionService>();
IntelliSense\AsyncCompletion\CommitManager.cs (1)
315var formattingService = currentDocument?.GetRequiredLanguageService<IFormattingInteractionService>();