Skip to content

Commit

Permalink
Fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
genlu committed May 11, 2022
1 parent e31abf4 commit 9ebd02c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public override async Task ProvideCompletionsAsync(CompletionContext completionC
// Do not show name suggestions for unbound "async" identifier.
// Most likely user is writing an async method, so name suggestion will just interfere him
if (context.TargetToken.IsKindOrHasMatchingText(SyntaxKind.AsyncKeyword) &&
semanticModel.GetSymbolInfo(context.TargetToken).GetAnySymbol() is null)
context.SemanticModel.GetSymbolInfo(context.TargetToken).GetAnySymbol() is null)
{
return;
}
Expand Down

0 comments on commit 9ebd02c

Please sign in to comment.