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