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