1 override of IsAsyncSupportingFunctionSyntax
Microsoft.CodeAnalysis.CSharp.Features (1)
src\Analyzers\CSharp\CodeFixes\RemoveAsyncModifier\CSharpRemoveAsyncModifierCodeFixProvider.cs (1)
30protected override bool IsAsyncSupportingFunctionSyntax(SyntaxNode node)
3 references to IsAsyncSupportingFunctionSyntax
Microsoft.CodeAnalysis.Features (3)
src\Analyzers\Core\CodeFixes\RemoveAsyncModifier\AbstractRemoveAsyncModifierCodeFixProvider.cs (3)
36var node = token.GetAncestor(IsAsyncSupportingFunctionSyntax); 67var node = token.GetAncestor(IsAsyncSupportingFunctionSyntax); 181var returns = node.DescendantNodes(n => n == node || !IsAsyncSupportingFunctionSyntax(n)).OfType<TReturnStatementSyntax>();