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