1 write to AwaitableInstancePlaceholder
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
2183this.AwaitableInstancePlaceholder = awaitableInstancePlaceholder;
17 references to AwaitableInstancePlaceholder
Microsoft.CodeAnalysis.CSharp (17)
Binder\RefSafetyAnalysis.cs (1)
1097if (awaitableInfo.AwaitableInstancePlaceholder is { } placeholder)
FlowAnalysis\NullableWalker.cs (8)
3652if (awaitInfo is not { AwaitableInstancePlaceholder: { } placeholder }) 12540if (enumeratorInfoOpt is { MoveNextAwaitableInfo: { AwaitableInstancePlaceholder: BoundAwaitableValuePlaceholder moveNextPlaceholder } awaitMoveNextInfo }) 13038var placeholder = awaitableInfo.AwaitableInstancePlaceholder; 13713if (node.AwaitableInstancePlaceholder is not null) 13716SetNotNullResult(node.AwaitableInstancePlaceholder); 13725Debug.Assert(node.AwaitableInstancePlaceholder is not null); 13736VisitPlaceholderWithReplacement(node.AwaitableInstancePlaceholder); 13737AddPlaceholderReplacement(node.RuntimeAsyncAwaitCallPlaceholder, node.AwaitableInstancePlaceholder, _visitResult);
Generated\BoundNodes.xml.Generated.cs (5)
2209if (awaitableInstancePlaceholder != this.AwaitableInstancePlaceholder || isDynamic != this.IsDynamic || getAwaiter != this.GetAwaiter || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(isCompleted, this.IsCompleted) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(getResult, this.GetResult) || runtimeAsyncAwaitCall != this.RuntimeAsyncAwaitCall || runtimeAsyncAwaitCallPlaceholder != this.RuntimeAsyncAwaitCallPlaceholder) 10270this.Visit(node.AwaitableInstancePlaceholder); 11460BoundAwaitableValuePlaceholder? awaitableInstancePlaceholder = (BoundAwaitableValuePlaceholder?)this.Visit(node.AwaitableInstancePlaceholder); 13440BoundAwaitableValuePlaceholder? awaitableInstancePlaceholder = (BoundAwaitableValuePlaceholder?)this.Visit(node.AwaitableInstancePlaceholder); 15961new TreeDumperNode("awaitableInstancePlaceholder", null, new TreeDumperNode[] { Visit(node.AwaitableInstancePlaceholder, null) }),
Lowering\AsyncRewriter\AsyncMethodToStateMachineRewriter.cs (1)
354var awaitablePlaceholder = node.AwaitableInfo.AwaitableInstancePlaceholder;
Lowering\AsyncRewriter\RuntimeAsyncRewriter.cs (1)
181var awaitablePlaceholder = awaitableInfo.AwaitableInstancePlaceholder;
Lowering\BoundTreeToDifferentEnclosingContextRewriter.cs (1)
122var awaitablePlaceholder = node.AwaitableInstancePlaceholder;