4 writes to MaxEndNode
Microsoft.CodeAnalysis.CodeStyle (4)
IntervalTree`1.Node.cs (4)
26
this.
MaxEndNode
= this;
45
MaxEndNode
= this;
49
MaxEndNode
= left.MaxEndNode;
53
MaxEndNode
= right.MaxEndNode;
6 references to MaxEndNode
Microsoft.CodeAnalysis.CodeStyle (6)
IntervalTree`1.cs (3)
227
if (right != null && GetEnd(right.
MaxEndNode
.Value, in introspector) >= start)
238
if (left != null && GetEnd(left.
MaxEndNode
.Value, in introspector) >= start)
358
=> node == null ? 0 : GetEnd(node.
MaxEndNode
.Value, in introspector);
IntervalTree`1.Node.cs (2)
49
MaxEndNode = left.
MaxEndNode
;
53
MaxEndNode = right.
MaxEndNode
;
SimpleIntervalTree`2.cs (1)
77
=> GetEnd(node.
MaxEndNode
.Value, in _introspector);