noUnreachable
诊断类别:lint/correctness/noUnreachable
¥Diagnostic Category: lint/correctness/noUnreachable
自从:v1.0.0
¥Since: v1.0.0
来源:
¥Sources:
-
与以下相同:
no-unreachable
¥Same as:
no-unreachable
禁止无法访问的代码
¥Disallow unreachable code
¥Examples
¥Invalid
code-block.js:3:5 lint/correctness/noUnreachable ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ This code will never be reached …
1 │ function example() {
2 │ return;
> 3 │ neverCalled();
│ ^^^^^^^^^^^^^^
4 │ }
5 │
ℹ … because this statement will return from the function beforehand
1 │ function example() {
> 2 │ return;
│ ^^^^^^^
3 │ neverCalled();
4 │ }
code-block.js:2:28 lint/correctness/noUnreachable ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ This code will never be reached …
1 │ function example() {
> 2 │ for(let i = 0; i < 10; ++i) {
│ ^^^
3 │ break;
4 │ }
ℹ … because this statement will break the flow of the code beforehand
1 │ function example() {
2 │ for(let i = 0; i < 10; ++i) {
> 3 │ break;
│ ^^^^^^
4 │ }
5 │ }
code-block.js:4:9 lint/correctness/noUnreachable ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ This code will never be reached …
2 │ for(const key in value) {
3 │ continue;
> 4 │ neverCalled();
│ ^^^^^^^^^^^^^^
5 │ }
6 │ }
ℹ … because this statement will continue the loop beforehand
1 │ function example() {
2 │ for(const key in value) {
> 3 │ continue;
│ ^^^^^^^^^
4 │ neverCalled();
5 │ }
¥Related links