3 references to IsAsyncSupportingFunctionSyntax
Microsoft.CodeAnalysis.Features (3)
src\Analyzers\Core\CodeFixes\RemoveAsyncModifier\AbstractRemoveAsyncModifierCodeFixProvider.cs (3)
38
var node = token.GetAncestor(
IsAsyncSupportingFunctionSyntax
);
78
var node = token.GetAncestor(
IsAsyncSupportingFunctionSyntax
);
192
var returns = node.DescendantNodes(n => n == node || !
IsAsyncSupportingFunctionSyntax
(n)).OfType<TReturnStatementSyntax>();