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