1 write to Right
Microsoft.CodeAnalysis.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\MutableIntervalTree`1.Node.cs (1)
33this.Right = right;
26 references to Right
Microsoft.CodeAnalysis.CodeStyle (26)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\MutableIntervalTree`1.cs (5)
76newRight = root.Right; 81newRight = Insert(root.Right, newNode, newNodeStart, in introspector); 94var rightBalance = BalanceFactor(node.Right); 123=> node == null ? 0 : Height(node.Left) - Height(node.Right); 171rightNode = node.Right;
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\MutableIntervalTree`1.Node.cs (19)
75this.SetLeftRight(this.Left.Right, this.Right, in introspector); 92RoslynDebug.AssertNotNull(Right); 94var oldRight = this.Right; 95this.SetLeftRight(this.Left, this.Right.Left, in introspector); 96oldRight.SetLeftRight(this, oldRight.Right, in introspector); 111RoslynDebug.AssertNotNull(Right); 112RoslynDebug.AssertNotNull(Right.Left); 114var newTop = this.Right.Left; 115var oldRight = this.Right; 117this.SetLeftRight(this.Left, this.Right.Left.Left, in introspector); 118oldRight.SetLeftRight(oldRight.Left.Right, oldRight.Right, in introspector); 136RoslynDebug.AssertNotNull(Left.Right); 138var newTop = this.Left.Right; 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 (2)
98var right = currentNode.Right; 156if (parentNode.Right == currentNode)