We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4486c3b commit b187a0aCopy full SHA for b187a0a
src/services/signatureHelp.ts
@@ -227,7 +227,11 @@ module ts.SignatureHelp {
227
}
228
229
// findListItemInfo can return undefined if we are not in parent's argument list
230
- // or type argument list.
+ // or type argument list. This includes cases where the cursor is:
231
+ // - To the right of the closing paren
232
+ // - Between the type arguments and the arguments (greater than token)
233
+ // - On the target of the call (parent.func)
234
+ // - On the 'new' keyword in a 'new' expression
235
return findListItemInfo(node);
236
237
0 commit comments