aboutsummaryrefslogtreecommitdiff
path: root/test/compress
diff options
context:
space:
mode:
authorAlex Lam S.L <alexlamsl@gmail.com>2020-05-24 00:38:40 +0100
committerGitHub <noreply@github.com>2020-05-24 07:38:40 +0800
commit2c4d7d66efca56d89bc4acbfec63ac034570bcaa (patch)
tree85787154f0128a8e3e6310d912f10138085e290d /test/compress
parentd1cc5270a3c4e34f0e639a869ecd1df21cc62fe7 (diff)
downloadtracifyjs-2c4d7d66efca56d89bc4acbfec63ac034570bcaa.tar.gz
tracifyjs-2c4d7d66efca56d89bc4acbfec63ac034570bcaa.zip
fix corner case in `reduce_vars` (#3923)
fixes #3922
Diffstat (limited to 'test/compress')
-rw-r--r--test/compress/reduce_vars.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/compress/reduce_vars.js b/test/compress/reduce_vars.js
index 08accc45..94852d45 100644
--- a/test/compress/reduce_vars.js
+++ b/test/compress/reduce_vars.js
@@ -7095,3 +7095,30 @@ issue_3894: {
}
expect_stdout: "PASS"
}
+
+issue_3922: {
+ options = {
+ evaluate: true,
+ keep_fargs: "strict",
+ pure_getters: "strict",
+ reduce_vars: true,
+ side_effects: true,
+ unused: true,
+ }
+ input: {
+ (function(a) {
+ var b;
+ b && b[c];
+ a |= this;
+ console.log("PASS");
+ var c = a.undefined;
+ })();
+ }
+ expect: {
+ (function() {
+ 0;
+ console.log("PASS");
+ })();
+ }
+ expect_stdout: "PASS"
+}