1 write to Left
Microsoft.CodeAnalysis.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\MutableIntervalTree`1.Node.cs (1)
32this.Left = left;
29 references to Left
Microsoft.CodeAnalysis.CodeStyle (29)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\MutableIntervalTree`1.cs (5)
75newLeft = Insert(root.Left, newNode, newNodeStart, in introspector); 80newLeft = root.Left; 107var leftBalance = BalanceFactor(node.Left); 123=> node == null ? 0 : Height(node.Left) - Height(node.Right); 165leftNode = node.Left;
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\MutableIntervalTree`1.Node.cs (19)
72RoslynDebug.AssertNotNull(Left); 74var oldLeft = this.Left; 75this.SetLeftRight(this.Left.Right, this.Right, in introspector); 76oldLeft.SetLeftRight(oldLeft.Left, this, in introspector); 95this.SetLeftRight(this.Left, this.Right.Left, in introspector); 112RoslynDebug.AssertNotNull(Right.Left); 114var newTop = this.Right.Left; 117this.SetLeftRight(this.Left, this.Right.Left.Left, in introspector); 118oldRight.SetLeftRight(oldRight.Left.Right, oldRight.Right, in introspector); 135RoslynDebug.AssertNotNull(Left); 136RoslynDebug.AssertNotNull(Left.Right); 138var newTop = this.Left.Right; 139var oldLeft = this.Left; 141this.SetLeftRight(this.Left.Right.Right, this.Right, in introspector); 142oldLeft.SetLeftRight(oldLeft.Left, oldLeft.Right.Left, in introspector);
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\ContextMutableIntervalTree.cs (5)
108var left = currentNode.Left; 149if (parentNode.Left == currentNode) 159if (parentNode.Left != null && end <= MaxEndValue(parentNode.Left)) 167spineNodes.Push(parentNode.Left);