aboutsummaryrefslogtreecommitdiff
path: root/test/compress/reduce_vars.js
diff options
context:
space:
mode:
authorAlex Lam S.L <alexlamsl@gmail.com>2018-05-07 07:36:25 +0800
committerGitHub <noreply@github.com>2018-05-07 07:36:25 +0800
commitdf8a99439a3cab07670fd462ad2f8d6d240a8312 (patch)
treed8e4d2a92fbba72cf276d41d43eed44aca690419 /test/compress/reduce_vars.js
parent6b91d12ec352ad0494752aa6a74ee16cc99b5158 (diff)
downloadtracifyjs-df8a99439a3cab07670fd462ad2f8d6d240a8312.tar.gz
tracifyjs-df8a99439a3cab07670fd462ad2f8d6d240a8312.zip
fix various corner cases (#3126)
- augment ufuzz/reminify test options fixes #3125
Diffstat (limited to 'test/compress/reduce_vars.js')
-rw-r--r--test/compress/reduce_vars.js88
1 files changed, 88 insertions, 0 deletions
diff --git a/test/compress/reduce_vars.js b/test/compress/reduce_vars.js
index e47b96b5..bc5fcf1b 100644
--- a/test/compress/reduce_vars.js
+++ b/test/compress/reduce_vars.js
@@ -6058,3 +6058,91 @@ conditional_nested_2: {
}
expect_stdout: "1"
}
+
+issue_2436: {
+ options = {
+ evaluate: true,
+ reduce_vars: true,
+ toplevel: true,
+ unsafe: true,
+ }
+ input: {
+ var c;
+ console.log(((c = {
+ a: 1,
+ b: 2
+ }).a = 3, {
+ x: c.a,
+ y: c.b
+ }));
+ }
+ expect: {
+ var c;
+ console.log(((c = {
+ a: 1,
+ b: 2
+ }).a = 3, {
+ x: c.a,
+ y: c.b
+ }));
+ }
+ expect_stdout: true
+}
+
+issue_2916: {
+ options = {
+ collapse_vars: true,
+ evaluate: true,
+ inline: true,
+ passes: 2,
+ reduce_vars: true,
+ side_effects: true,
+ unsafe: true,
+ unused: true,
+ }
+ input: {
+ var c = "FAIL";
+ (function(b) {
+ (function(d) {
+ d[0] = 1;
+ })(b);
+ +b && (c = "PASS");
+ })([]);
+ console.log(c);
+ }
+ expect: {
+ var c = "FAIL";
+ (function(b) {
+ b[0] = 1;
+ +b && (c = "PASS");
+ })([]);
+ console.log(c);
+ }
+ expect_stdout: "PASS"
+}
+
+issue_3125: {
+ options = {
+ evaluate: true,
+ reduce_vars: true,
+ toplevel: true,
+ unsafe: true,
+ }
+ input: {
+ var o;
+ console.log((function() {
+ this.p++;
+ }.call(o = {
+ p: 6
+ }), o.p));
+ }
+ expect: {
+ var o;
+ console.log((function() {
+ this.p++;
+ }.call(o = {
+ p: 6
+ }), o.p));
+ }
+ expect_stdout: "7"
+}