2 implementations of TryGetRightNode
Microsoft.CodeAnalysis.CodeStyle (2)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\ImmutableIntervalTree`1.cs (1)
308
public bool
TryGetRightNode
(ImmutableIntervalTree<T> tree, int node, out int rightNode)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\MutableIntervalTree`1.cs (1)
169
public bool
TryGetRightNode
(MutableIntervalTree<T> tree, Node node, [NotNullWhen(true)] out Node? rightNode)
2 references to TryGetRightNode
Microsoft.CodeAnalysis.CodeStyle (2)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\IntervalTreeHelpers.cs (2)
119
return witness.
TryGetRightNode
(tree, currentNode, out right);
125
if (witness.
TryGetRightNode
(tree, currentNode, out var rightNode) &&