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

9 lines
104 B
JavaScript

(function() {
var a;
with (b){
a;
}
a = a += 1; // This should be reduce
}());