1 write to Adjustment
Microsoft.CodeAnalysis.CodeStyle (1)
FormattingContext.IndentationData.cs (1)
137Adjustment = adjustment;
5 references to Adjustment
Microsoft.CodeAnalysis.CodeStyle (5)
FormattingContext.cs (1)
238if (indentationData is not AdjustedIndentationData { BaseIndentationData: var baseIndentationData, Adjustment: var totalAdjustment })
FormattingContext.IndentationData.cs (4)
125/// Represents an indentation in which a fixed offset (<see cref="Adjustment"/>) is applied to a reference 134Debug.Assert(baseIndentationData is not AdjustedIndentationData, $"Indentation data should only involve one layer of adjustment (multiples can be combined by adding the {nameof(Adjustment)} fields."); 151public override int Indentation => BaseIndentationData.Indentation + Adjustment; 155return new AdjustedIndentationData(span, BaseIndentationData, Adjustment);