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