10 instantiations of BatchNode
Microsoft.CodeAnalysis (3)
SourceGeneration\Nodes\BatchNode.cs (2)
27
public IIncrementalGeneratorNode<ImmutableArray<TInput>> WithComparer(IEqualityComparer<ImmutableArray<TInput>> comparer) => new
BatchNode
<TInput>(_sourceNode, comparer, _name);
29
public IIncrementalGeneratorNode<ImmutableArray<TInput>> WithTrackingName(string name) => new
BatchNode
<TInput>(_sourceNode, _comparer, name);
SourceGeneration\Nodes\ValueSourceExtensions.cs (1)
29
public static IncrementalValueProvider<ImmutableArray<TSource>> Collect<TSource>(this IncrementalValuesProvider<TSource> source) => new IncrementalValueProvider<ImmutableArray<TSource>>(new
BatchNode
<TSource>(source.Node));
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (7)
SourceGeneration\StateTableTests.cs (7)
373
BatchNode<int> batchNode = new
BatchNode
<int>(inputNode, name: "Batch");
415
BatchNode<int> batchNode = new
BatchNode
<int>(inputNode);
433
BatchNode<int> batchNode = new
BatchNode
<int>(inputNode, name: "Batch");
479
BatchNode<int> batchNode = new
BatchNode
<int>(inputNode, name: "Batch");
526
BatchNode<int> batchNode = new
BatchNode
<int>(inputNode);
545
BatchNode<int> batchNode = new
BatchNode
<int>(inputNode, name: "Batch");
899
var batchNode = new
BatchNode
<int>(inputNode, name: "Batch");
7 references to BatchNode
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (7)
SourceGeneration\StateTableTests.cs (7)
373
BatchNode
<int> batchNode = new BatchNode<int>(inputNode, name: "Batch");
415
BatchNode
<int> batchNode = new BatchNode<int>(inputNode);
433
BatchNode
<int> batchNode = new BatchNode<int>(inputNode, name: "Batch");
479
BatchNode
<int> batchNode = new BatchNode<int>(inputNode, name: "Batch");
526
BatchNode
<int> batchNode = new BatchNode<int>(inputNode);
545
BatchNode
<int> batchNode = new BatchNode<int>(inputNode, name: "Batch");
899
var
batchNode = new BatchNode<int>(inputNode, name: "Batch");