1 write to _hashSetPool
Microsoft.CodeAnalysis (1)
SourceGeneration\Nodes\InputNode.cs (1)
45_hashSetPool = hashSetPool;
4 references to _hashSetPool
Microsoft.CodeAnalysis (4)
SourceGeneration\Nodes\InputNode.cs (4)
139var set = _hashSetPool?.Allocate() ?? PooledHashSet<T>.GetInstance(); 171public IIncrementalGeneratorNode<T> WithComparer(IEqualityComparer<T> comparer) => new InputNode<T>(_getInput, _registerOutput, _hashSetPool, comparer, _name); 173public IIncrementalGeneratorNode<T> WithTrackingName(string name) => new InputNode<T>(_getInput, _registerOutput, _hashSetPool, _comparer, name); 175public InputNode<T> WithRegisterOutput(Action<IIncrementalGeneratorOutputNode> registerOutput) => new InputNode<T>(_getInput, registerOutput, _hashSetPool, _comparer, _name);