1 write to BaseIndentationData
Microsoft.CodeAnalysis.Workspaces (1)
FormattingContext.IndentationData.cs (1)
136
BaseIndentationData
= baseIndentationData;
6 references to BaseIndentationData
Microsoft.CodeAnalysis.Workspaces (6)
FormattingContext.cs (1)
238
if (indentationData is not AdjustedIndentationData {
BaseIndentationData
: var baseIndentationData, Adjustment: var totalAdjustment })
FormattingContext.IndentationData.cs (5)
126
/// indentation amount (<see cref="
BaseIndentationData
"/>).
133
Debug.Assert(adjustment != 0, $"Indentation with no adjustment should be represented by {nameof(
BaseIndentationData
)} directly.");
147
/// <see cref="
BaseIndentationData
"/>.
151
public override int Indentation =>
BaseIndentationData
.Indentation + Adjustment;
155
return new AdjustedIndentationData(span,
BaseIndentationData
, Adjustment);