aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Lam S.L <alexlamsl@gmail.com>2021-04-27 15:52:37 +0100
committerGitHub <noreply@github.com>2021-04-27 22:52:37 +0800
commita06e20304b042ab5cd2ad051fb60cf50a7934bb7 (patch)
tree6e4f77ef7eb874356ca4008ab4fb2629d5c5d77c
parent4cccc01f3ec7f80c4ef3dd574942b164422c6bd9 (diff)
downloadtracifyjs-a06e20304b042ab5cd2ad051fb60cf50a7934bb7.tar.gz
tracifyjs-a06e20304b042ab5cd2ad051fb60cf50a7934bb7.zip
fix corner case in `pure_getters` (#4877)
fixes #4876
-rw-r--r--lib/compress.js7
-rw-r--r--test/compress/assignments.js29
2 files changed, 34 insertions, 2 deletions
diff --git a/lib/compress.js b/lib/compress.js
index 150b554e..3847015d 100644
--- a/lib/compress.js
+++ b/lib/compress.js
@@ -3683,10 +3683,13 @@ merge(Compressor.prototype, {
def(AST_Node, is_strict);
def(AST_Array, return_false);
def(AST_Assign, function(compressor) {
- if (this.operator != "=") return false;
+ var op = this.operator;
+ var sym = this.left;
var rhs = this.right;
+ if (op != "=") {
+ return lazy_op[op.slice(0, -1)] && (sym._dot_throw(compressor) || rhs._dot_throw(compressor));
+ }
if (!rhs._dot_throw(compressor)) return false;
- var sym = this.left;
if (!(sym instanceof AST_SymbolRef)) return true;
if (rhs instanceof AST_Binary && rhs.operator == "||" && sym.name == rhs.left.name) {
return rhs.right._dot_throw(compressor);
diff --git a/test/compress/assignments.js b/test/compress/assignments.js
index 3973e2f5..fba763d3 100644
--- a/test/compress/assignments.js
+++ b/test/compress/assignments.js
@@ -672,3 +672,32 @@ issue_4827_3: {
expect_stdout: "undefined"
node_version: ">=15"
}
+
+issue_4876: {
+ options = {
+ pure_getters: "strict",
+ reduce_vars: true,
+ side_effects: true,
+ toplevel: true,
+ }
+ input: {
+ try {
+ var a = null;
+ var b = a &&= 42;
+ b.p;
+ } catch (e) {
+ console.log("PASS");
+ }
+ }
+ expect: {
+ try {
+ var a = null;
+ var b = a &&= 42;
+ b.p;
+ } catch (e) {
+ console.log("PASS");
+ }
+ }
+ expect_stdout: "PASS"
+ node_version: ">=15"
+}