2 instantiations of AdjustedIndentationData
Microsoft.CodeAnalysis.Workspaces (2)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Context\FormattingContext.cs (1)
255
derived = new
AdjustedIndentationData
(intervalTreeSpan, baseIndentationData, totalAdjustment);
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Context\FormattingContext.IndentationData.cs (1)
143
return new
AdjustedIndentationData
(span, BaseIndentationData, Adjustment);
2 references to AdjustedIndentationData
Microsoft.CodeAnalysis.Workspaces (2)
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 (1)
122
RoslynDebug.Assert(baseIndentationData is not
AdjustedIndentationData
, $"Indentation data should only involve one layer of adjustment (multiples can be combined by adding the {nameof(Adjustment)} fields.");