1 write to _name
Microsoft.CodeAnalysis (1)
SourceGeneration\Nodes\InputNode.cs (1)
46
_name
= name;
5 references to _name
Microsoft.CodeAnalysis (5)
SourceGeneration\Nodes\InputNode.cs (5)
72
tableBuilder = graphState.CreateTableBuilder(previousTable,
_name
, _comparer);
171
public IIncrementalGeneratorNode<T> WithComparer(IEqualityComparer<T> comparer) => new InputNode<T>(_getInput, _registerOutput, _hashSetPool, comparer,
_name
);
175
public InputNode<T> WithRegisterOutput(Action<IIncrementalGeneratorOutputNode> registerOutput) => new InputNode<T>(_getInput, registerOutput, _hashSetPool, _comparer,
_name
);
187
var tableBuilder = NodeStateTable<T>.Empty.ToBuilder(
_name
, stepTrackingEnabled: false, tableCapacity: inputs.Length);
194
this.LogTables(
_name
, s_tableType, previousTable, newTable, inputTable);