if (foo) {
with (bar)
if (baz)
x();
} else y();
(the compressor removes the brackets since the consequent consists of a
single statement, but the codegen must include the brackets because
otherwise the `else` would refer to the inner `if`)
|
||
|---|---|---|
| .. | ||
| ast.js | ||
| compress.js | ||
| output.js | ||
| parse.js | ||
| scope.js | ||
| utils.js | ||