2 writes to Height
Microsoft.CodeAnalysis.Workspaces (2)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\MutableIntervalTree`1.Node.cs (2)
25this.Height = 1; 35this.Height = 1 + Math.Max(Height(left), Height(right));
1 reference to Height
Microsoft.CodeAnalysis.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\MutableIntervalTree`1.cs (1)
144=> node == null ? 0 : node.Height;