swc/ecmascript/codegen/tests/references/e5570b178254bfb9.js
강동윤 eb2a2a7f15
Fix tests and lints (#44)
- Temporarilly ignored comment codegen tests.
 - Split Simplify into SimplifyExpr and SimplifyStmt
 - fix lints
2018-11-05 13:12:52 +09:00

6 lines
247 B
JavaScript

// ContinueStatement should be removed.
// And label is not used, then label also should be removed.
a: do continue // ContinueStatement should be removed.
// And label is not used, then label also should be removed.
a: do continue a;while (true)