7 implementations of WithTrackingName
Microsoft.CodeAnalysis (7)
SourceGeneration\Nodes\BatchNode.cs (1)
31
public IIncrementalGeneratorNode<ImmutableArray<TInput>>
WithTrackingName
(string name) => new BatchNode<TInput>(_sourceNode, _comparer, name);
SourceGeneration\Nodes\CombineNode.cs (1)
105
public IIncrementalGeneratorNode<(TInput1, TInput2)>
WithTrackingName
(string name) => new CombineNode<TInput1, TInput2>(_input1, _input2, _comparer, name);
SourceGeneration\Nodes\HostOutputNode.cs (1)
100
public IIncrementalGeneratorNode<OutputType>
WithTrackingName
(string name) => throw ExceptionUtilities.Unreachable();
SourceGeneration\Nodes\InputNode.cs (1)
116
public IIncrementalGeneratorNode<T>
WithTrackingName
(string name) => new InputNode<T>(_getInput, _registerOutput, _inputComparer, _comparer, name);
SourceGeneration\Nodes\SourceOutputNode.cs (1)
94
public IIncrementalGeneratorNode<(IEnumerable<GeneratedSourceText>, IEnumerable<Diagnostic>)>
WithTrackingName
(string name) => throw ExceptionUtilities.Unreachable();
SourceGeneration\Nodes\SyntaxInputNode.cs (1)
38
public IIncrementalGeneratorNode<T>
WithTrackingName
(string name) => new SyntaxInputNode<T>(_inputNode, _registerOutput, _comparer, name);
SourceGeneration\Nodes\TransformNode.cs (1)
43
public IIncrementalGeneratorNode<TOutput>
WithTrackingName
(string name)
3 references to WithTrackingName
Microsoft.CodeAnalysis (3)
SourceGeneration\IncrementalContexts.cs (1)
58
.
WithTrackingName
(WellKnownGeneratorInputs.CompilationOptions), CatchAnalyzerExceptions);
SourceGeneration\Nodes\ValueSourceExtensions.cs (2)
46
public static IncrementalValueProvider<TSource> WithTrackingName<TSource>(this IncrementalValueProvider<TSource> source, string name) => new IncrementalValueProvider<TSource>(source.Node.
WithTrackingName
(name), source.CatchAnalyzerExceptions);
48
public static IncrementalValuesProvider<TSource> WithTrackingName<TSource>(this IncrementalValuesProvider<TSource> source, string name) => new IncrementalValuesProvider<TSource>(source.Node.
WithTrackingName
(name), source.CatchAnalyzerExceptions);