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