4 references to Height
Microsoft.CodeAnalysis.CodeStyle (4)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\MutableIntervalTree`1.cs (2)
123=> node == null ? 0 : Height(node.Left) - Height(node.Right);
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\MutableIntervalTree`1.Node.cs (2)
35this.Height = 1 + Math.Max(Height(left), Height(right));