2 writes to next
Microsoft.CodeAnalysis (2)
Collections\SmallDictionary.cs (2)
152this.next = next; 479head.next = newNext;
2 references to next
Microsoft.CodeAnalysis (2)
Collections\SmallDictionary.cs (2)
155public override Node Next => next; 478var newNext = new NodeLinked(key, value, head.next);