2 implementations of GetValue
GenerateDocumentationAndConfigFiles (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)
152public T GetValue(MutableIntervalTree<T> tree, Node node)
6 references to GetValue
GenerateDocumentationAndConfigFiles (6)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\IntervalTreeHelpers.cs (5)
60var currentNodeValue = witness.GetValue(tree, enumerator.Current); 96if (intervalTester.Test(witness.GetValue(tree, currentNode), start, length, in introspector)) 124if (introspector.GetSpan(witness.GetValue(tree, currentNode)).Start <= end) 127introspector.GetSpan(witness.GetValue(tree, witness.GetMaxEndNode(tree, rightNode))).End >= start) 153introspector.GetSpan(witness.GetValue(tree, witness.GetMaxEndNode(tree, left))).End >= start)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\IntervalTreeHelpers.Enumerator.cs (1)
32public readonly T Current => default(TIntervalTreeWitness).GetValue(tree, _nodeEnumerator.Current);