2 overrides of CreateAggregatedFormattingResult
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
CSharpSyntaxFormatting.cs (1)
45protected override IFormattingResult CreateAggregatedFormattingResult(SyntaxNode node, IList<AbstractFormattingResult> results, SimpleIntervalTree<TextSpan, TextSpanIntervalIntrospector>? formattingSpans = null)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
Formatting\VisualBasicSyntaxFormatting.vb (1)
42Protected Overrides Function CreateAggregatedFormattingResult(node As SyntaxNode, results As IList(Of AbstractFormattingResult), Optional formattingSpans As SimpleIntervalTree(Of TextSpan, TextSpanIntervalIntrospector) = Nothing) As IFormattingResult
3 references to CreateAggregatedFormattingResult
Microsoft.CodeAnalysis.Workspaces (3)
AbstractSyntaxFormatting.cs (3)
55return CreateAggregatedFormattingResult(node, SpecializedCollections.EmptyList<AbstractFormattingResult>()); 75return CreateAggregatedFormattingResult(node, SpecializedCollections.EmptyList<AbstractFormattingResult>()); 84return CreateAggregatedFormattingResult(node, results);