2 implementations of GetValue
Microsoft.CodeAnalysis.CodeStyle (2)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\ImmutableIntervalTree`1.cs (1)
290public T GetValue(ImmutableIntervalTree<T> tree, int node)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\MutableIntervalTree`1.cs (1)
151public T GetValue(MutableIntervalTree<T> tree, Node node)
5 references to GetValue
Microsoft.CodeAnalysis.CodeStyle (5)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\IntervalTreeHelpers.cs (5)
59var currentNodeValue = witness.GetValue(tree, enumerator.Current); 95if (intervalTester.Test(witness.GetValue(tree, currentNode), start, length, in introspector)) 123if (introspector.GetSpan(witness.GetValue(tree, currentNode)).Start <= end) 126introspector.GetSpan(witness.GetValue(tree, witness.GetMaxEndNode(tree, rightNode))).End >= start) 152introspector.GetSpan(witness.GetValue(tree, witness.GetMaxEndNode(tree, left))).End >= start)