swc/ecmascript/codegen/tests/references/32a9af0615bf7618.js
강동윤 30af06bb70
Ast (#513)
swc_ecmascript:
 - add `ExprStmt`.
 - change type of regex.expression and regex.flags.
2019-12-16 18:08:21 +09:00

8 lines
124 B
JavaScript

(function() {
var a = 1;
with (b){
a += a += 2; // 'i' lookup can be observed by obj's getter.
}
}());