Skip to content

Commit 041de5f

Browse files
committedApr 13, 2022
fix: regression with checking TS MethodDefinition params
1 parent 288363e commit 041de5f

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed
 

‎src/jsdocUtils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ const getFunctionParameterNames = (
271271
throw new Error(`Unsupported function signature format: \`${param.type}\`.`);
272272
};
273273

274-
return functionNode.params.map((param) => {
274+
return (functionNode.params || functionNode.value.params).map((param) => {
275275
return getParamName(param);
276276
});
277277
};

‎test/rules/assertions/requireParam.js

+24
Original file line numberDiff line numberDiff line change
@@ -3366,5 +3366,29 @@ export default {
33663366
sourceType: 'module',
33673367
},
33683368
},
3369+
{
3370+
code: `
3371+
/**
3372+
* [A description]
3373+
*/
3374+
class A {
3375+
/**
3376+
* @param config
3377+
*/
3378+
constructor (config: SomeConfig) {
3379+
super(config);
3380+
}
3381+
}
3382+
`,
3383+
ignoreReadme: true,
3384+
options: [
3385+
{
3386+
contexts: [
3387+
'MethodDefinition',
3388+
],
3389+
},
3390+
],
3391+
parser: require.resolve('@typescript-eslint/parser'),
3392+
},
33693393
],
33703394
};

0 commit comments

Comments
 (0)
Please sign in to comment.