10 writes to Right
Microsoft.CodeAnalysis (10)
Collections\SmallDictionary.cs (10)
301
previousNode.
Right
= currentNode;
367
unbalancedParent.
Right
= rotated;
375
unbalanced.
Right
= right.Left;
388
left.
Right
= unbalanced;
402
rightLeft.
Right
= right;
403
unbalanced.
Right
= rightLeft.Left;
429
left.
Right
= leftRight.Left;
432
leftRight.
Right
= unbalanced;
486
newHead.
Right
= node.Right;
500
parent.
Right
= newHead;
23 references to Right
Microsoft.CodeAnalysis (23)
Collections\SmallDictionary.cs (23)
188
int b = AssertBalanced(V.
Right
);
214
b = b.
Right
;
297
if (currentNode.
Right
== null)
306
currentNode = currentNode.
Right
;
326
n = n.
Right
!;
341
rotated = unbalanced.
Right
!.Balance < 0 ?
373
RoslynDebug.Assert(unbalanced.
Right
is object);
374
var right = unbalanced.
Right
;
387
unbalanced.Left = left.
Right
;
397
RoslynDebug.Assert(unbalanced.
Right
is object);
398
RoslynDebug.Assert(unbalanced.
Right
.Left is object);
399
var right = unbalanced.
Right
;
401
right.Left = rightLeft.
Right
;
426
RoslynDebug.Assert(unbalanced.Left.
Right
!= null);
428
var leftRight = left.
Right
;
431
unbalanced.Left = leftRight.
Right
;
486
newHead.Right = node.
Right
;
528
if (root.Left == root.
Right
)
561
PushIfNotNull(curr.
Right
);
646
if (root.Left == root.
Right
)
678
PushIfNotNull(curr.
Right
);
752
if (root.Left == root.
Right
)
784
PushIfNotNull(curr.
Right
);