3 implementations of IFormattingService
Microsoft.CodeAnalysis.Features (1)
ExternalAccess\VSTypeScript\VSTypeScriptFormattingService.cs (1)
20internal sealed class VSTypeScriptFormattingService([Import(AllowDefault = true)] IVSTypeScriptFormattingServiceImplementation impl) : IFormattingService
Microsoft.CodeAnalysis.Workspaces (1)
Formatting\AbstractFormattingService.cs (1)
15internal abstract class AbstractFormattingService : IFormattingService
Microsoft.CodeAnalysis.Workspaces.UnitTests (1)
Formatter\FormatterTests.cs (1)
33internal sealed class TestFormattingService : IFormattingService
5 references to IFormattingService
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
Formatting\CSharpFormattingService.cs (1)
12[ExportLanguageService(typeof(IFormattingService), LanguageNames.CSharp), Shared]
Microsoft.CodeAnalysis.Features (1)
ExternalAccess\VSTypeScript\VSTypeScriptFormattingService.cs (1)
17[ExportLanguageService(typeof(IFormattingService), InternalLanguageNames.TypeScript), Shared]
Microsoft.CodeAnalysis.Workspaces (2)
Formatting\Formatter.cs (2)
81var formattingService = document.GetLanguageService<IFormattingService>();
Microsoft.CodeAnalysis.Workspaces.UnitTests (1)
Formatter\FormatterTests.cs (1)
32[ExportLanguageService(typeof(IFormattingService), language: NoCompilationConstants.LanguageName), Shared, PartNotDiscoverable]