1 write to _getInput
Microsoft.CodeAnalysis (1)
SourceGeneration\Nodes\InputNode.cs (1)
37
_getInput
= getInput;
4 references to _getInput
Microsoft.CodeAnalysis (4)
SourceGeneration\Nodes\InputNode.cs (4)
47
var inputItems =
_getInput
(graphState);
114
public IIncrementalGeneratorNode<T> WithComparer(IEqualityComparer<T> comparer) => new InputNode<T>(
_getInput
, _registerOutput, _inputComparer, comparer, _name);
116
public IIncrementalGeneratorNode<T> WithTrackingName(string name) => new InputNode<T>(
_getInput
, _registerOutput, _inputComparer, _comparer, name);
118
public InputNode<T> WithRegisterOutput(Action<IIncrementalGeneratorOutputNode> registerOutput) => new InputNode<T>(
_getInput
, registerOutput, _inputComparer, _comparer, _name);