src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\MutableIntervalTree`1.Node.cs (10)
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);
96oldRight.SetLeftRight(this, oldRight.Right, in introspector);
117this.SetLeftRight(this.Left, this.Right.Left.Left, in introspector);
118oldRight.SetLeftRight(oldRight.Left.Right, oldRight.Right, in introspector);
119newTop.SetLeftRight(this, oldRight, in introspector);
141this.SetLeftRight(this.Left.Right.Right, this.Right, in introspector);
142oldLeft.SetLeftRight(oldLeft.Left, oldLeft.Right.Left, in introspector);
143newTop.SetLeftRight(oldLeft, this, in introspector);