1 write to Text
Microsoft.CodeAnalysis.Workspaces (1)
AbstractIndentation.Indenter.cs (1)
54Text = tree.GetText(cancellationToken);
5 references to Text
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
CSharpIndentationService.Indenter.cs (1)
58var line = indenter.Text.Lines.GetLineFromPosition(trivia.FullSpan.Start);
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
VisualBasicIndentationService.Indenter.vb (1)
63Dim line = indenter.Text.Lines.GetLineFromPosition(trivia.FullSpan.Start)
Microsoft.CodeAnalysis.Workspaces (3)
AbstractIndentation.Indenter.cs (3)
111var previousLine = this.Text.Lines[LineToBeIndented.LineNumber - 1]; 153var line = this.Text.Lines[currentLine]; 172var updatedSourceText = Text.WithChanges(changes);