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