7 references to GetBaseIndentation
Microsoft.CodeAnalysis.CodeStyle (2)
AbstractTriviaFormatter.cs (1)
576LineColumnRule.IndentationOperations.Default => this.Context.GetBaseIndentation(trivia2.RawKind == 0 ? this.EndPosition : trivia2.SpanStart),
FormattingContext.cs (1)
441=> GetBaseIndentation(token.SpanStart);
Microsoft.CodeAnalysis.CSharp.CodeStyle (2)
TriviaDataFactory.CodeShapeAnalyzer.cs (2)
197if (this.UseIndentation && _indentation != _context.GetBaseIndentation(trivia.SpanStart)) 237if (_indentation != _context.GetBaseIndentation(trivia.SpanStart))
Microsoft.CodeAnalysis.VisualBasic.CodeStyle (3)
TriviaDataFactory.CodeShapeAnalyzer.vb (2)
215If Me.UseIndentation AndAlso Me._indentation <> Me._context.GetBaseIndentation(trivia.SpanStart) Then 247If Me._indentation <> Me._context.GetBaseIndentation(trivia.SpanStart) Then
VisualBasicTriviaFormatter.vb (1)
265Dim indentation = Me.Context.GetBaseIndentation(trivia.SpanStart)