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