5 references to IsAsyncSupportingFunctionSyntax
Microsoft.CodeAnalysis.CSharp.Features (5)
Completion\CompletionProviders\AwaitCompletionProvider.cs (1)
76
return parent.AncestorsAndSelf().FirstOrDefault(node => node.
IsAsyncSupportingFunctionSyntax
());
CSharpMakeMethodAsynchronousCodeFixProvider.cs (1)
65
=> node.
IsAsyncSupportingFunctionSyntax
();
CSharpMakeMethodSynchronousCodeFixProvider.cs (1)
32
=> node.
IsAsyncSupportingFunctionSyntax
();
CSharpRemoveAsyncModifierCodeFixProvider.cs (1)
33
=> node.
IsAsyncSupportingFunctionSyntax
();
Snippets\CSharpConsoleSnippetProvider.cs (1)
39
var node = token.GetAncestor(node => node.
IsAsyncSupportingFunctionSyntax
());