6 references to ContextMutableIntervalTree
Microsoft.CodeAnalysis.CodeStyle (6)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Context\FormattingContext.cs (6)
63
_relativeIndentationTree = new
ContextMutableIntervalTree
<RelativeIndentationData, FormattingContextIntervalIntrospector>(new FormattingContextIntervalIntrospector());
65
_indentationTree = new
ContextMutableIntervalTree
<IndentationData, FormattingContextIntervalIntrospector>(new FormattingContextIntervalIntrospector());
66
_suppressWrappingTree = new
ContextMutableIntervalTree
<SuppressWrappingData, SuppressIntervalIntrospector>(new SuppressIntervalIntrospector());
67
_suppressSpacingTree = new
ContextMutableIntervalTree
<SuppressSpacingData, SuppressIntervalIntrospector>(new SuppressIntervalIntrospector());
68
_suppressFormattingTree = new
ContextMutableIntervalTree
<SuppressSpacingData, SuppressIntervalIntrospector>(new SuppressIntervalIntrospector());
69
_anchorTree = new
ContextMutableIntervalTree
<AnchorData, FormattingContextIntervalIntrospector>(new FormattingContextIntervalIntrospector());