if (foo) continue;
...body...
==>
if (!foo) { ...body ... }
Only when the parent block is the target loop of the `continue` statement.
|
||
|---|---|---|
| .. | ||
| ast.js | ||
| compress.js | ||
| output.js | ||
| parse.js | ||
| scope.js | ||
| sourcemap.js | ||
| utils.js | ||
if (foo) continue;
...body...
==>
if (!foo) { ...body ... }
Only when the parent block is the target loop of the `continue` statement.
|
||
|---|---|---|
| .. | ||
| ast.js | ||
| compress.js | ||
| output.js | ||
| parse.js | ||
| scope.js | ||
| sourcemap.js | ||
| utils.js | ||