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