1 write to Adjustment
Microsoft.CodeAnalysis.Workspaces (1)
FormattingContext.IndentationData.cs (1)
137
Adjustment
= adjustment;
5 references to Adjustment
Microsoft.CodeAnalysis.Workspaces (5)
FormattingContext.cs (1)
238
if (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
134
Debug.Assert(baseIndentationData is not AdjustedIndentationData, $"Indentation data should only involve one layer of adjustment (multiples can be combined by adding the {nameof(
Adjustment
)} fields.");
151
public override int Indentation => BaseIndentationData.Indentation +
Adjustment
;
155
return new AdjustedIndentationData(span, BaseIndentationData,
Adjustment
);