aboutsummaryrefslogtreecommitdiff
path: root/test/compress/reduce_vars.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/compress/reduce_vars.js')
-rw-r--r--test/compress/reduce_vars.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/compress/reduce_vars.js b/test/compress/reduce_vars.js
index a3421c00..9dcf96aa 100644
--- a/test/compress/reduce_vars.js
+++ b/test/compress/reduce_vars.js
@@ -1599,7 +1599,7 @@ defun_label: {
}
expect: {
!function() {
- console.log(function(a) {
+ console.log(function() {
L: {
if (2) break L;
return 1;
@@ -1763,13 +1763,13 @@ iife_func_side_effects: {
function z() {
console.log("z");
}
- (function(a, b, c) {
+ (function(b) {
return function() {
console.log("FAIL");
} + b();
- })(x(), function() {
+ })((x(), function() {
return y();
- }, z());
+ }), z());
}
expect_stdout: [
"x",
@@ -1830,7 +1830,7 @@ issue_1595_3: {
})(2);
}
expect: {
- (function(a) {
+ (function() {
return g(3);
})();
}
@@ -6602,7 +6602,7 @@ issues_3267_1: {
});
}
expect: {
- !function(i) {
+ !function() {
if (Object())
return console.log("PASS");
throw "FAIL";