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