4 references to InputNode
Microsoft.CodeAnalysis (4)
SourceGeneration\Nodes\InputNode.cs (4)
31: this(getInput, registerOutput: null, CreateHashSetPool(inputComparer), comparer: null)
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);