-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed as not planned
Closed as not planned
Copy link
Labels
Feature: Signature HelpLanguage ServiceWorks in VSSo we'd need to fix it for VS Code to reach parity.So we'd need to fix it for VS Code to reach parity.bug
Milestone
Description
Example code is:
void foo(int a, int b, int c);
void bar()
{
foo(1, 2, 3);
foo(1, []() { return 2; }(), 3);
}
If you type over the , before 3 in the first call to foo, signature help is displayed. In the second call to foo, no signature help is displayed. The current implementation of signature help is getting confused by the contents of the lambda.
I'd like to remove a function (involved in the matching), to complete #12795 . The problem doesn't occur in VS. They leverage the TU to detect the function to provide help for semantically. Using this issue to track fixing the bug by implementing an approach equivalent to what VS is doing.
Metadata
Metadata
Assignees
Labels
Feature: Signature HelpLanguage ServiceWorks in VSSo we'd need to fix it for VS Code to reach parity.So we'd need to fix it for VS Code to reach parity.bug
Type
Projects
Status
Done