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