1 write to FormattedSpan
Microsoft.CodeAnalysis.Workspaces (1)
AbstractFormattingResult.cs (1)
35this.FormattedSpan = formattedSpan;
3 references to FormattedSpan
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
FormattingResult.cs (1)
26var rewriter = new TriviaRewriter(this.TreeInfo.Root, SimpleIntervalTree.Create(new TextSpanIntervalIntrospector(), this.FormattedSpan), changeMap, cancellationToken);
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
Formatting\Engine\FormattingResult.vb (1)
26Dim triviaRewriter = New TriviaDataFactory.TriviaRewriter(Me.TreeInfo.Root, SimpleIntervalTree.Create(New TextSpanIntervalIntrospector(), Me.FormattedSpan), changeMap, cancellationToken)
Microsoft.CodeAnalysis.Workspaces (1)
AbstractAggregatedFormattingResult.cs (1)
49=> _formattingSpans ?? SimpleIntervalTree.Create(new TextSpanIntervalIntrospector(), _formattingResults.Select(r => r.FormattedSpan));