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