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