swc/ecmascript/codegen/tests/references/2e5fbf7b1685fa1b.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

12 lines
206 B
JavaScript

(function() {
var a = 1;
// should not hoist this
arguments[2] = 3;
(function() {
// should not hoist this
arguments[2] = 3;
(function () {
eval('');
}());
}());