5 references to GetIndentationOfCurrentPosition
Microsoft.CodeAnalysis.CodeStyle (2)
AbstractIndentation.Indenter.cs (1)
229var indentation = Finder.GetIndentationOfCurrentPosition(this.Tree, token, LineToBeIndented.Start, CancellationToken.None);
BottomUpBaseIndentationFinder.cs (1)
63return GetIndentationOfCurrentPosition(tree, token, position, cancellationToken);
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (3)
CSharpIndentationService.Indenter.cs (3)
247return indenter.IndentFromStartOfLine(indenter.Finder.GetIndentationOfCurrentPosition(indenter.Tree, token, position, indenter.CancellationToken)); 261return indenter.IndentFromStartOfLine(indenter.Finder.GetIndentationOfCurrentPosition(indenter.Tree, token, position, indenter.CancellationToken)); 266return indenter.IndentFromStartOfLine(indenter.Finder.GetIndentationOfCurrentPosition(indenter.Tree, token, position, indenter.CancellationToken));