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