6 references to FormatterHelper
Microsoft.CodeAnalysis.Features (6)
FormattingAnalyzerHelper.cs (2)
11using Formatter = Microsoft.CodeAnalysis.Formatting.FormatterHelper; 25var formattingChanges = Formatter.GetFormattedTextChanges(tree.GetRoot(cancellationToken), formattingProvider, options, cancellationToken);
FormattingCodeFixHelper.cs (2)
10using Formatter = Microsoft.CodeAnalysis.Formatting.FormatterHelper; 28var formattedRoot = Formatter.Format(root, spanToFormat, formattingProvider, options, cancellationToken);
FormattingCodeFixProvider.cs (2)
15using Formatter = Microsoft.CodeAnalysis.Formatting.FormatterHelper; 76var updatedRoot = Formatter.Format(editor.OriginalRoot, SyntaxFormatting, formattingOptions, cancellationToken);