aboutsummaryrefslogtreecommitdiff
path: root/test/compress/properties.js
diff options
context:
space:
mode:
authorAlex Lam S.L <alexlamsl@gmail.com>2018-02-09 01:52:39 +0800
committerGitHub <noreply@github.com>2018-02-09 01:52:39 +0800
commitbf1d47180c87462b1605157eb15b31c9db2c1249 (patch)
tree09b4c30e0ff396446f51e5cc9637ab07e8248a1a /test/compress/properties.js
parent0cfbd79aa123a97c94c1bf5032acf11c15886dad (diff)
downloadtracifyjs-bf1d47180c87462b1605157eb15b31c9db2c1249.tar.gz
tracifyjs-bf1d47180c87462b1605157eb15b31c9db2c1249.zip
fix `join_vars` on property accessors (#2895)
fixes #2893
Diffstat (limited to 'test/compress/properties.js')
-rw-r--r--test/compress/properties.js52
1 files changed, 52 insertions, 0 deletions
diff --git a/test/compress/properties.js b/test/compress/properties.js
index dbc7bf2d..419c7f85 100644
--- a/test/compress/properties.js
+++ b/test/compress/properties.js
@@ -1588,3 +1588,55 @@ issue_2816: {
}
expect_stdout: "3 2 4"
}
+
+issue_2893_1: {
+ options = {
+ join_vars: true,
+ }
+ input: {
+ var o = {
+ get a() {
+ return "PASS";
+ },
+ };
+ o.a = "FAIL";
+ console.log(o.a);
+ }
+ expect: {
+ var o = {
+ get a() {
+ return "PASS";
+ },
+ };
+ o.a = "FAIL";
+ console.log(o.a);
+ }
+ expect_stdout: "PASS"
+}
+
+issue_2893_2: {
+ options = {
+ join_vars: true,
+ }
+ input: {
+ var o = {
+ set a(v) {
+ this.b = v;
+ },
+ b: "FAIL",
+ };
+ o.a = "PASS";
+ console.log(o.b);
+ }
+ expect: {
+ var o = {
+ set a(v) {
+ this.b = v;
+ },
+ b: "FAIL",
+ };
+ o.a = "PASS";
+ console.log(o.b);
+ }
+ expect_stdout: "PASS"
+}