You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the general parenthesized case, it may be enough to get away with just two more matches; one on SynExpr.Parent(SynExpr.Paren(... and another on SynExpr.Paren(SynExpr.Tuple(.... I'll see if that feel sufficient or not.
This tracks improvements to the signature help feature for function applications.
This one is tricky with the current implementation. We can either:
The latter has always worked, so it's currently implemented to do that. But it'll be more work to figure out how to do both.
As of #10954 this should be improved a lot, since it covers parenthesized contexts that have a lambda. But it can still trigger in cases like this:
To address this, we'll need to figure out a way to generalize the parenthesized case for
TryRangeOfFunctionOrMethodBeingApplied
.The text was updated successfully, but these errors were encountered: