We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56b19c9 commit a86fa20Copy full SHA for a86fa20
src/services/symbolDisplay.ts
@@ -171,8 +171,7 @@ namespace ts.SymbolDisplay {
171
}
172
173
if (callExpressionLike) {
174
- const candidateSignatures: Signature[] = [];
175
- signature = typeChecker.getResolvedSignature(callExpressionLike, candidateSignatures)!; // TODO: GH#18217
+ signature = typeChecker.getResolvedSignature(callExpressionLike)!; // TODO: GH#18217
176
177
const useConstructSignatures = callExpressionLike.kind === SyntaxKind.NewExpression || (isCallExpression(callExpressionLike) && callExpressionLike.expression.kind === SyntaxKind.SuperKeyword);
178
0 commit comments