1 implementation of IFormattingInteractionService
Microsoft.CodeAnalysis.EditorFeatures (1)
ExternalAccess\VSTypeScript\VSTypeScriptFormattingInteractionService.cs (1)
21
internal 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)
73
var formattingService = document.GetRequiredLanguageService<
IFormattingInteractionService
>();
138
var service = document.GetLanguageService<
IFormattingInteractionService
>();
Formatting\FormatCommandHandler.FormatDocument.cs (1)
30
var formattingService = document.GetLanguageService<
IFormattingInteractionService
>();
Formatting\FormatCommandHandler.FormatSelection.cs (1)
36
var formattingService = document.GetLanguageService<
IFormattingInteractionService
>();
Formatting\FormatCommandHandler.Paste.cs (1)
71
var formattingService = document.GetLanguageService<
IFormattingInteractionService
>();
IntelliSense\AsyncCompletion\CommitManager.cs (1)
315
var formattingService = currentDocument?.GetRequiredLanguageService<
IFormattingInteractionService
>();