3 instantiations of Node
Microsoft.CodeAnalysis.Workspaces (3)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\ImmutableIntervalTree`1.cs (3)
114destination[destinationIndex] = new(source[rootIndexInSource], destinationIndex); 243array[currentNodeIndex] = new Node(currentNode.Value, maxEndNodeIndex); 252array[currentNodeIndex] = new Node(currentNode.Value, maxEndNodeIndex);
7 references to Node
Microsoft.CodeAnalysis.Workspaces (7)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\ImmutableIntervalTree`1.cs (7)
25public static readonly ImmutableIntervalTree<T> Empty = new(new SegmentedArray<Node>(0)); 37private readonly SegmentedArray<Node> _array; 39private ImmutableIntervalTree(SegmentedArray<Node> array) 86var array = new SegmentedArray<Node>(values.Count); 97SegmentedList<T> source, int sourceStartInclusive, int sourceEndExclusive, SegmentedArray<Node> destination, int destinationIndex) 212static int ComputeMaxEndNodes(SegmentedArray<Node> array, int currentNodeIndex, in TIntrospector introspector) 226var currentNode = array[currentNodeIndex];