1 write to BaseIndentationData
Microsoft.CodeAnalysis.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Context\FormattingContext.IndentationData.cs (1)
124BaseIndentationData = baseIndentationData;
6 references to BaseIndentationData
Microsoft.CodeAnalysis.Workspaces (6)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Context\FormattingContext.cs (1)
237if (indentationData is not AdjustedIndentationData { BaseIndentationData: var baseIndentationData, Adjustment: var totalAdjustment })
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Context\FormattingContext.IndentationData.cs (5)
114/// indentation amount (<see cref="BaseIndentationData"/>). 121RoslynDebug.Assert(adjustment != 0, $"Indentation with no adjustment should be represented by {nameof(BaseIndentationData)} directly."); 135/// <see cref="BaseIndentationData"/>. 139public override int Indentation => BaseIndentationData.Indentation + Adjustment; 143return new AdjustedIndentationData(span, BaseIndentationData, Adjustment);