1 write to _getInput
Microsoft.CodeAnalysis (1)
SourceGeneration\Nodes\InputNode.cs (1)
42_getInput = getInput;
4 references to _getInput
Microsoft.CodeAnalysis (4)
SourceGeneration\Nodes\InputNode.cs (4)
57var inputItems = _getInput(graphState); 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);