2 implementations of TryGetLeftNode
Microsoft.CodeAnalysis.CodeStyle (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)
163
public 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)
147
return witness.
TryGetLeftNode
(tree, currentNode, out left);
151
if (witness.
TryGetLeftNode
(tree, currentNode, out left) &&