5 references to CSharpSmartTokenFormatter
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (2)
Formatting\Indentation\CSharpFormatterTestsBase.cs (1)
97var formatter = new CSharpSmartTokenFormatter(options, rules, (CompilationUnitSyntax)documentSyntax.Root, documentSyntax.Text);
Formatting\Indentation\SmartTokenFormatterFormatRangeTests.cs (1)
3432var formatter = new CSharpSmartTokenFormatter(options, rules, (CompilationUnitSyntax)documentSyntax.Root, documentSyntax.Text);
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
CSharpIndentationService.Indenter.cs (1)
33return new CSharpSmartTokenFormatter(options, rules, root, text);
Formatting\CSharpSyntaxFormattingService.cs (2)
172var formatter = new CSharpSmartTokenFormatter(options, formattingRules, (CompilationUnitSyntax)document.Root, document.Text); 199var formatter = new CSharpSmartTokenFormatter(options, formattingRules, (CompilationUnitSyntax)document.Root, document.Text);