2 implementations of TryGetLeftNode
Test.Utilities (2)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\ImmutableIntervalTree`1.cs (1)
302
public bool
TryGetLeftNode
(ImmutableIntervalTree<T> tree, int node, out int leftNode)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\MutableIntervalTree`1.cs (1)
164
public bool
TryGetLeftNode
(MutableIntervalTree<T> tree, Node node, [NotNullWhen(true)] out Node? leftNode)
2 references to TryGetLeftNode
Test.Utilities (2)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\IntervalTreeHelpers.cs (2)
148
return witness.
TryGetLeftNode
(tree, currentNode, out left);
152
if (witness.
TryGetLeftNode
(tree, currentNode, out left) &&