12 writes to Right
GenerateDocumentationAndConfigFiles (12)
src\RoslynAnalyzers\Utilities\Compiler\SmallDictionary.cs (12)
95
currentNode.
Right
= Remove(currentNode.Right, hashCode);
129
currentNode.
Right
= Remove(currentNode.Right, temp.HashCode);
414
previousNode.
Right
= currentNode;
480
unbalancedParent.
Right
= rotated;
488
unbalanced.
Right
= right.Left;
501
left.
Right
= unbalanced;
515
rightLeft.
Right
= right;
516
unbalanced.
Right
= rightLeft.Left;
542
left.
Right
= leftRight.Left;
545
leftRight.
Right
= unbalanced;
598
newHead.
Right
= node.Right;
612
parent.
Right
= newHead;
31 references to Right
GenerateDocumentationAndConfigFiles (31)
src\RoslynAnalyzers\Utilities\Compiler\SmallDictionary.cs (31)
95
currentNode.Right = Remove(currentNode.
Right
, hashCode);
100
if ((currentNode.Left == null) || (currentNode.
Right
== null))
104
temp = currentNode.
Right
;
121
AvlNode temp = MinValueNode(currentNode.
Right
);
129
currentNode.Right = Remove(currentNode.
Right
, temp.HashCode);
136
currentNode.Balance = (sbyte)(Height(currentNode.Left) - Height(currentNode.
Right
));
143
rotated = currentNode.
Right
!.Balance <= 0 ?
177
int b = Height(node.
Right
);
301
int b = AssertBalanced(V.
Right
);
327
b = b.
Right
;
410
if (currentNode.
Right
== null)
419
currentNode = currentNode.
Right
;
439
n = n.
Right
!;
454
rotated = unbalanced.
Right
!.Balance < 0 ?
486
RoslynDebug.Assert(unbalanced.
Right
is object);
487
var right = unbalanced.
Right
;
500
unbalanced.Left = left.
Right
;
510
RoslynDebug.Assert(unbalanced.
Right
is object);
511
RoslynDebug.Assert(unbalanced.
Right
.Left is object);
512
var right = unbalanced.
Right
;
514
right.Left = rightLeft.
Right
;
539
RoslynDebug.Assert(unbalanced.Left.
Right
!= null);
541
var leftRight = left.
Right
;
544
unbalanced.Left = leftRight.
Right
;
598
newHead.Right = node.
Right
;
641
if (root.Left == root.
Right
)
674
PushIfNotNull(_stack, curr.
Right
);
760
if (root.Left == root.
Right
)
792
PushIfNotNull(_stack, curr.
Right
);
866
if (root.Left == root.
Right
)
898
PushIfNotNull(_stack, curr.
Right
);