3 writes to root
Microsoft.CodeAnalysis.CodeStyle (3)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\MutableIntervalTree`1.cs (1)
32
result.
root
= Insert(result.root, new Node(value), in introspector);
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\SimpleMutableIntervalTree`2.cs (2)
23
root
= Insert(root, new Node(value), introspector);
37
this.
root
= Insert(root, newNode, in Introspector);
8 references to root
Microsoft.CodeAnalysis.CodeStyle (8)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\MutableIntervalTree`1.cs (3)
32
result.root = Insert(result.
root
, new Node(value), in introspector);
54
public bool IsEmpty() => this.
root
== null;
159
root = tree.
root
;
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\SimpleMutableIntervalTree`2.cs (2)
23
root = Insert(
root
, new Node(value), introspector);
37
this.root = Insert(
root
, newNode, in Introspector);
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\ContextMutableIntervalTree.cs (3)
69
if (
root
== null || MaxEndValue(
root
) < start)
90
spineNodes.Push(
root
);