11 instantiations of BatchNode
Microsoft.CodeAnalysis (3)
SourceGeneration\Nodes\BatchNode.cs (2)
29public IIncrementalGeneratorNode<ImmutableArray<TInput>> WithComparer(IEqualityComparer<ImmutableArray<TInput>> comparer) => new BatchNode<TInput>(_sourceNode, comparer, _name); 31public 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), source.CatchAnalyzerExceptions);
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (8)
SourceGeneration\StateTableTests.cs (8)
374BatchNode<int> batchNode = new BatchNode<int>(inputNode, name: "Batch"); 416BatchNode<int> batchNode = new BatchNode<int>(inputNode); 434BatchNode<int> batchNode = new BatchNode<int>(inputNode, name: "Batch"); 480BatchNode<int> batchNode = new BatchNode<int>(inputNode, name: "Batch"); 527BatchNode<int> batchNode = new BatchNode<int>(inputNode); 546BatchNode<int> batchNode = new BatchNode<int>(inputNode, name: "Batch"); 610var batchNode = new BatchNode<string>(inputNode); 939var batchNode = new BatchNode<int>(inputNode, name: "Batch");
8 references to BatchNode
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (8)
SourceGeneration\StateTableTests.cs (8)
374BatchNode<int> batchNode = new BatchNode<int>(inputNode, name: "Batch"); 416BatchNode<int> batchNode = new BatchNode<int>(inputNode); 434BatchNode<int> batchNode = new BatchNode<int>(inputNode, name: "Batch"); 480BatchNode<int> batchNode = new BatchNode<int>(inputNode, name: "Batch"); 527BatchNode<int> batchNode = new BatchNode<int>(inputNode); 546BatchNode<int> batchNode = new BatchNode<int>(inputNode, name: "Batch"); 610var batchNode = new BatchNode<string>(inputNode); 939var batchNode = new BatchNode<int>(inputNode, name: "Batch");