3 overrides of Indentation
Microsoft.CodeAnalysis.Workspaces (3)
FormattingContext.IndentationData.cs (3)
42
public override int
Indentation
=> _indentation;
116
public override int
Indentation
=> GetOrComputeIndentationDelta() + _baseIndentationGetter(_formattingContext, _effectiveBaseTokenGetter(_formattingContext, Operation));
151
public override int
Indentation
=> BaseIndentationData.Indentation + Adjustment;
3 references to Indentation
Microsoft.CodeAnalysis.Workspaces (3)
FormattingContext.cs (1)
452
return indentationData.
Indentation
;
FormattingContext.IndentationData.cs (2)
146
/// The adjustment to apply to the <see cref="IndentationData.
Indentation
"/> value providede by
151
public override int Indentation => BaseIndentationData.
Indentation
+ Adjustment;