mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
30af06bb70
swc_ecmascript: - add `ExprStmt`. - change type of regex.expression and regex.flags.
9 lines
112 B
JavaScript
9 lines
112 B
JavaScript
(function() {
|
|
var a = {
|
|
};
|
|
with (a){
|
|
(1, b)(); // Don't transform it to test()
|
|
|
|
}
|
|
}());
|