aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/compress.js5
-rw-r--r--test/compress/evaluate.js27
2 files changed, 28 insertions, 4 deletions
diff --git a/lib/compress.js b/lib/compress.js
index ef775b9e..f44552aa 100644
--- a/lib/compress.js
+++ b/lib/compress.js
@@ -3592,10 +3592,7 @@ merge(Compressor.prototype, {
key = key._eval(compressor, ignore_side_effects, cached, depth);
if (key === prop.key) return this;
}
- if (prop.value instanceof AST_Function) {
- if (typeof Object.prototype[key] == "function") return this;
- continue;
- }
+ if (prop.value instanceof AST_Function && typeof Object.prototype[key] == "function") return this;
val[key] = prop.value._eval(compressor, ignore_side_effects, cached, depth);
if (val[key] === prop.value) return this;
}
diff --git a/test/compress/evaluate.js b/test/compress/evaluate.js
index 9fa65202..46a92ee3 100644
--- a/test/compress/evaluate.js
+++ b/test/compress/evaluate.js
@@ -3047,3 +3047,30 @@ issue_4214: {
}
expect_stdout: "NaN"
}
+
+issue_4271: {
+ options = {
+ evaluate: true,
+ unsafe: true,
+ }
+ input: {
+ ({
+ p: null,
+ q: (console.log("foo"), 42),
+ p: function() {}
+ })[console.log("bar"), "p"] && console.log("PASS");
+ }
+ expect: {
+ ({
+ p: null,
+ q: (console.log("foo"), 42),
+ p: function() {}
+ })[console.log("bar"), "p"],
+ console.log("PASS");
+ }
+ expect_stdout: [
+ "foo",
+ "bar",
+ "PASS",
+ ]
+}