1 write to GetAwaiterMethod
Microsoft.CodeAnalysis.CSharp (1)
Compilation\AwaitExpressionInfo.cs (1)
25GetAwaiterMethod = getAwaiter;
11 references to GetAwaiterMethod
Microsoft.CodeAnalysis.CSharp (3)
Compilation\AwaitExpressionInfo.cs (3)
38return object.Equals(this.GetAwaiterMethod, other.GetAwaiterMethod) 46return Hash.Combine(GetAwaiterMethod, Hash.Combine(IsCompletedProperty, Hash.Combine(GetResultMethod, IsDynamic.GetHashCode())));
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SemanticFacts\CSharpSemanticFacts.cs (1)
195return info.GetAwaiterMethod;
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (6)
Semantics\AwaitExpressionTests.cs (6)
90info.GetAwaiterMethod.ToTestDisplayString() 117Assert.Equal("System.Runtime.CompilerServices.TaskAwaiter<System.Int32> System.Threading.Tasks.Task<System.Int32>.GetAwaiter()", info.GetAwaiterMethod.ToTestDisplayString()); 135Assert.Equal("System.Runtime.CompilerServices.TaskAwaiter<System.Int32> System.Threading.Tasks.Task<System.Int32>.GetAwaiter()", info.GetAwaiterMethod.ToTestDisplayString()); 145Assert.Null(info.GetAwaiterMethod); 269Assert.Equal("System.Runtime.CompilerServices.TaskAwaiter<System.Int32> System.Threading.Tasks.Task<System.Int32>.GetAwaiter()", info.GetAwaiterMethod.ToTestDisplayString()); 297Assert.Null(info.GetAwaiterMethod);
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SemanticFacts\CSharpSemanticFacts.cs (1)
195return info.GetAwaiterMethod;