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 1625ce5 commit 4d44a2bCopy full SHA for 4d44a2b
src/services/inlayHints.ts
@@ -442,9 +442,9 @@ export function provideInlayHints(context: InlayHintsContext): InlayHint[] {
442
for (const param of node.parameters) {
443
if (isHintableDeclaration(param)) {
444
addParameterTypeHint(param, parameterIsThisKeyword(param) ? signature.thisParameter : signature.parameters[pos]);
445
- if (parameterIsThisKeyword(param)) {
446
- continue;
447
- }
+ }
+ if (parameterIsThisKeyword(param)) {
+ continue;
448
}
449
pos++;
450
0 commit comments