mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 03:31:45 +03:00
30af06bb70
swc_ecmascript: - add `ExprStmt`. - change type of regex.expression and regex.flags.
8 lines
105 B
JavaScript
8 lines
105 B
JavaScript
(function() {
|
|
var a = 1;
|
|
with (b){
|
|
a + (c(), d(), e()); // do not transform
|
|
|
|
}
|
|
}());
|