3 overrides of Indentation
Microsoft.CodeAnalysis.Workspaces (3)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Context\FormattingContext.IndentationData.cs (3)
30
public override int
Indentation
=> indentation;
104
public override int
Indentation
=> GetOrComputeIndentationDelta() + _baseIndentationGetter(_formattingContext, _effectiveBaseTokenGetter(_formattingContext, Operation));
139
public override int
Indentation
=> BaseIndentationData.Indentation + Adjustment;
3 references to Indentation
Microsoft.CodeAnalysis.Workspaces (3)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Context\FormattingContext.cs (1)
428
return 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
139
public override int Indentation => BaseIndentationData.
Indentation
+ Adjustment;