2 instantiations of RelativeIndentationData
Microsoft.CodeAnalysis.Workspaces (2)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Context\FormattingContext.cs (1)
208
var relativeIndentationData = new
RelativeIndentationData
(this, inseparableRegionStartingPosition, intervalTreeSpan, operation, effectiveBaseTokenGetter, relativeIndentationDeltaGetter, relativeIndentationBaseIndentationGetter);
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Context\FormattingContext.IndentationData.cs (1)
108
return new
RelativeIndentationData
(_formattingContext, InseparableRegionSpan.Start, span, Operation, _effectiveBaseTokenGetter, _indentationDeltaGetter, _baseIndentationGetter, _lazyIndentationDelta);
7 references to RelativeIndentationData
Microsoft.CodeAnalysis.Workspaces (7)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Context\FormattingContext.AnchorData.cs (3)
32
IIntervalIntrospector<
RelativeIndentationData
>
40
TextSpan IIntervalIntrospector<
RelativeIndentationData
>.GetSpan(
RelativeIndentationData
value)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Context\FormattingContext.cs (4)
29
private readonly ContextMutableIntervalTree<
RelativeIndentationData
, FormattingContextIntervalIntrospector> _relativeIndentationTree;
63
_relativeIndentationTree = new ContextMutableIntervalTree<
RelativeIndentationData
, FormattingContextIntervalIntrospector>(new FormattingContextIntervalIntrospector());
208
var
relativeIndentationData = new RelativeIndentationData(this, inseparableRegionStartingPosition, intervalTreeSpan, operation, effectiveBaseTokenGetter, relativeIndentationDeltaGetter, relativeIndentationBaseIndentationGetter);
449
var
indentationData = _relativeIndentationTree.GetSmallestContainingInterval(span.Start, 0);