4 references to Height
Microsoft.CodeAnalysis.Workspaces (4)
IntervalTree`1.cs (2)
364=> node == null ? 0 : Height(node.Left) - Height(node.Right);
IntervalTree`1.Node.cs (2)
35this.Height = 1 + Math.Max(Height(left), Height(right));