File tree 5 files changed +88
-3
lines changed
5 files changed +88
-3
lines changed Original file line number Diff line number Diff line change @@ -16637,6 +16637,19 @@ function quux () {
16637
16637
return undefined;
16638
16638
}
16639
16639
16640
+ /**
16641
+ * @returns {never} Foo.
16642
+ */
16643
+ function quux () {
16644
+ }
16645
+
16646
+ /**
16647
+ * @returns {never} Foo.
16648
+ */
16649
+ function quux () {
16650
+ return undefined;
16651
+ }
16652
+
16640
16653
/**
16641
16654
* @returns {void} Foo.
16642
16655
*/
@@ -19583,6 +19596,12 @@ function * quux () {
19583
19596
function * quux () {
19584
19597
}
19585
19598
19599
+ /**
19600
+ * @yields {never} Foo.
19601
+ */
19602
+ function * quux () {
19603
+ }
19604
+
19586
19605
/**
19587
19606
* @yields {void} Foo.
19588
19607
*/
@@ -19789,6 +19808,14 @@ function * quux (foo) {
19789
19808
const a = yield 5 ;
19790
19809
}
19791
19810
// "jsdoc/require-yields-check": ["error"|"warn", {"next":true}]
19811
+
19812
+ /**
19813
+ * @next {never}
19814
+ */
19815
+ function * quux (foo ) {
19816
+
19817
+ }
19818
+ // "jsdoc/require-yields-check": ["error"|"warn", {"next":true}]
19792
19819
` ` ` `
19793
19820
19794
19821
Original file line number Diff line number Diff line change @@ -66,10 +66,19 @@ export default iterateJsdoc(({
66
66
return ;
67
67
}
68
68
69
+ const [ tag ] = tags ;
70
+
69
71
// In case a return value is declared in JSDoc, we also expect one in the code.
70
- if ( ( reportMissingReturnForUndefinedTypes || utils . hasDefinedTypeTag ( tags [ 0 ] ) ) && ! utils . hasValueOrExecutorHasNonEmptyResolveValue (
71
- exemptAsync ,
72
- ) && ( ! exemptGenerators || ! node . generator ) ) {
72
+ if (
73
+ tag . type . trim ( ) !== 'never' &&
74
+ (
75
+ reportMissingReturnForUndefinedTypes ||
76
+ utils . hasDefinedTypeTag ( tag )
77
+ ) &&
78
+ ! utils . hasValueOrExecutorHasNonEmptyResolveValue (
79
+ exemptAsync ,
80
+ ) && ( ! exemptGenerators || ! node . generator )
81
+ ) {
73
82
report ( `JSDoc @${ tagName } declaration present but return expression not available in function.` ) ;
74
83
}
75
84
} , {
Original file line number Diff line number Diff line change @@ -71,6 +71,10 @@ export default iterateJsdoc(({
71
71
) ;
72
72
if ( preferredYieldTagName ) {
73
73
const shouldReportYields = ( ) => {
74
+ if ( yieldTag . type . trim ( ) === 'never' ) {
75
+ return false ;
76
+ }
77
+
74
78
if ( checkGeneratorsOnly && ! utils . isGenerator ( ) ) {
75
79
return true ;
76
80
}
@@ -90,6 +94,10 @@ export default iterateJsdoc(({
90
94
) ;
91
95
if ( preferredNextTagName ) {
92
96
const shouldReportNext = ( ) => {
97
+ if ( nextTag . type . trim ( ) === 'never' ) {
98
+ return false ;
99
+ }
100
+
93
101
if ( checkGeneratorsOnly && ! utils . isGenerator ( ) ) {
94
102
return true ;
95
103
}
Original file line number Diff line number Diff line change @@ -519,6 +519,25 @@ export default {
519
519
}
520
520
` ,
521
521
} ,
522
+ {
523
+ code : `
524
+ /**
525
+ * @returns {never} Foo.
526
+ */
527
+ function quux () {
528
+ }
529
+ ` ,
530
+ } ,
531
+ {
532
+ code : `
533
+ /**
534
+ * @returns {never} Foo.
535
+ */
536
+ function quux () {
537
+ return undefined;
538
+ }
539
+ ` ,
540
+ } ,
522
541
{
523
542
code : `
524
543
/**
Original file line number Diff line number Diff line change @@ -440,6 +440,15 @@ export default {
440
440
}
441
441
` ,
442
442
} ,
443
+ {
444
+ code : `
445
+ /**
446
+ * @yields {never} Foo.
447
+ */
448
+ function * quux () {
449
+ }
450
+ ` ,
451
+ } ,
443
452
{
444
453
code : `
445
454
/**
@@ -719,5 +728,18 @@ export default {
719
728
next : true ,
720
729
} ] ,
721
730
} ,
731
+ {
732
+ code : `
733
+ /**
734
+ * @next {never}
735
+ */
736
+ function * quux (foo) {
737
+
738
+ }
739
+ ` ,
740
+ options : [ {
741
+ next : true ,
742
+ } ] ,
743
+ } ,
722
744
] ,
723
745
} ;
You can’t perform that action at this time.
0 commit comments