2 types derived from Node
Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers (2)
src\RoslynAnalyzers\Utilities\Compiler\SmallDictionary.cs (2)
242private sealed class NodeLinked : Node 271private abstract class HashedNode : Node
14 references to Node
Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers (14)
src\RoslynAnalyzers\Utilities\Compiler\SmallDictionary.cs (14)
239public virtual Node? Next => null; 244public NodeLinked(K key, V value, Node next) 250public override Node Next { get; } 257public Node next; 259public AvlNodeHead(int hashCode, K key, V value, Node next) 265public override Node Next => next; 348private bool GetFromList(Node? next, K key, [MaybeNullWhen(returnValue: false)] out V value) 566Node? currentNode = node; 631private Node? _next; 632private Node? _current; 747private Node? _next; 748private Node? _current; 853private Node? _next; 854private Node? _current;