7 implementations of UpdateStateTable
Microsoft.CodeAnalysis (7)
SourceGeneration\Nodes\BatchNode.cs (1)
111
public NodeStateTable<ImmutableArray<TInput>>
UpdateStateTable
(DriverStateTable.Builder builder, NodeStateTable<ImmutableArray<TInput>>? previousTable, CancellationToken cancellationToken)
SourceGeneration\Nodes\CombineNode.cs (1)
31
public NodeStateTable<(TInput1, TInput2)>
UpdateStateTable
(DriverStateTable.Builder graphState, NodeStateTable<(TInput1, TInput2)>? previousTable, CancellationToken cancellationToken)
SourceGeneration\Nodes\HostOutputNode.cs (1)
33
public NodeStateTable<OutputType>
UpdateStateTable
(DriverStateTable.Builder graphState, NodeStateTable<OutputType>? previousTable, CancellationToken cancellationToken)
SourceGeneration\Nodes\InputNode.cs (1)
44
public NodeStateTable<T>
UpdateStateTable
(DriverStateTable.Builder graphState, NodeStateTable<T>? previousTable, CancellationToken cancellationToken)
SourceGeneration\Nodes\SourceOutputNode.cs (1)
40
public NodeStateTable<TOutput>
UpdateStateTable
(DriverStateTable.Builder graphState, NodeStateTable<TOutput>? previousTable, CancellationToken cancellationToken)
SourceGeneration\Nodes\SyntaxInputNode.cs (1)
31
public NodeStateTable<T>
UpdateStateTable
(DriverStateTable.Builder graphState, NodeStateTable<T>? previousTable, CancellationToken cancellationToken)
SourceGeneration\Nodes\TransformNode.cs (1)
46
public NodeStateTable<TOutput>
UpdateStateTable
(DriverStateTable.Builder builder, NodeStateTable<TOutput>? previousTable, CancellationToken cancellationToken)
1 reference to UpdateStateTable
Microsoft.CodeAnalysis (1)
SourceGeneration\Nodes\DriverStateTable.cs (1)
60
var newTable = source.
UpdateStateTable
(this, previousTable, _cancellationToken);