File tree 3 files changed +27
-4
lines changed
3 files changed +27
-4
lines changed Original file line number Diff line number Diff line change @@ -18382,6 +18382,16 @@ const getTSFunctionComment = function (astNode) {
18382
18382
return astNode;
18383
18383
}
18384
18384
};
18385
+
18386
+ const f =
18387
+ /**
18388
+ * Description.
18389
+ *
18390
+ * @returns Result.
18391
+ */
18392
+ () => {
18393
+ return function () {};
18394
+ };
18385
18395
````
18386
18396
18387
18397
Original file line number Diff line number Diff line change 5
5
"url" : " http://gajus.com"
6
6
},
7
7
"dependencies" : {
8
- "@es-joy/jsdoccomment" : " ~0.36.0 " ,
8
+ "@es-joy/jsdoccomment" : " ~0.36.1 " ,
9
9
"comment-parser" : " 1.3.1" ,
10
10
"debug" : " ^4.3.4" ,
11
11
"escape-string-regexp" : " ^4.0.0" ,
25
25
"@babel/register" : " ^7.18.9" ,
26
26
"@es-joy/jsdoc-eslint-parser" : " ^0.17.0" ,
27
27
"@hkdobrev/run-if-changed" : " ^0.3.1" ,
28
- "@typescript-eslint/parser" : " ^5.42.1 " ,
28
+ "@typescript-eslint/parser" : " ^5.44.0 " ,
29
29
"babel-plugin-add-module-exports" : " ^1.0.4" ,
30
30
"babel-plugin-istanbul" : " ^6.1.1" ,
31
31
"camelcase" : " ^6.3.0" ,
32
32
"chai" : " ^4.3.7" ,
33
33
"cross-env" : " ^7.0.3" ,
34
34
"decamelize" : " ^5.0.1" ,
35
- "eslint" : " ^8.27 .0" ,
35
+ "eslint" : " ^8.28 .0" ,
36
36
"eslint-config-canonical" : " ~33.0.1" ,
37
37
"gitdown" : " ^3.1.5" ,
38
38
"glob" : " ^8.0.3" ,
45
45
"open-editor" : " ^3.0.0" ,
46
46
"rimraf" : " ^3.0.2" ,
47
47
"semantic-release" : " ^19.0.5" ,
48
- "typescript" : " ^4.8.4 "
48
+ "typescript" : " ^4.9.3 "
49
49
},
50
50
"engines" : {
51
51
"node" : " ^14 || ^16 || ^17 || ^18 || ^19"
Original file line number Diff line number Diff line change @@ -1477,5 +1477,18 @@ export default {
1477
1477
};
1478
1478
` ,
1479
1479
} ,
1480
+ {
1481
+ code : `
1482
+ const f =
1483
+ /**
1484
+ * Description.
1485
+ *
1486
+ * @returns Result.
1487
+ */
1488
+ () => {
1489
+ return function () {};
1490
+ };
1491
+ ` ,
1492
+ } ,
1480
1493
] ,
1481
1494
} ;
You can’t perform that action at this time.
0 commit comments