1 implementation of AsyncKeyword
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxKinds.cs (1)
141public int AsyncKeyword => (int)SyntaxKind.AsyncKeyword;
1 reference to AsyncKeyword
Microsoft.CodeAnalysis.Features (1)
Completion\Providers\AbstractAwaitCompletionProvider.cs (1)
191var asyncChange = new TextChange(new TextSpan(GetAsyncKeywordInsertionPosition(declaration), 0), syntaxFacts.GetText(syntaxKinds.AsyncKeyword) + " ");