3 overrides of Indentation
Microsoft.CodeAnalysis.CodeStyle (3)
FormattingContext.IndentationData.cs (3)
42public override int Indentation => _indentation; 116public override int Indentation => GetOrComputeIndentationDelta() + _baseIndentationGetter(_formattingContext, _effectiveBaseTokenGetter(_formattingContext, Operation)); 151public override int Indentation => BaseIndentationData.Indentation + Adjustment;
3 references to Indentation
Microsoft.CodeAnalysis.CodeStyle (3)
FormattingContext.cs (1)
452return indentationData.Indentation;
FormattingContext.IndentationData.cs (2)
146/// The adjustment to apply to the <see cref="IndentationData.Indentation"/> value providede by 151public override int Indentation => BaseIndentationData.Indentation + Adjustment;