3 overrides of Indentation
Microsoft.CodeAnalysis.Workspaces (3)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Context\FormattingContext.IndentationData.cs (3)
30public override int Indentation => indentation; 104public override int Indentation => GetOrComputeIndentationDelta() + _baseIndentationGetter(_formattingContext, _effectiveBaseTokenGetter(_formattingContext, Operation)); 139public override int Indentation => BaseIndentationData.Indentation + Adjustment;
3 references to Indentation
Microsoft.CodeAnalysis.Workspaces (3)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Context\FormattingContext.cs (1)
428return indentationData.Indentation;
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Context\FormattingContext.IndentationData.cs (2)
134/// The adjustment to apply to the <see cref="IndentationData.Indentation"/> value providede by 139public override int Indentation => BaseIndentationData.Indentation + Adjustment;