diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2018-01-23 02:49:54 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-23 02:49:54 +0800 |
commit | ec4202590d040942639e01eb8ae83bf7be7180dd (patch) | |
tree | b1f857c6051f50c1e792dd0bc4f1ebd9382e9de6 /test/compress/pure_getters.js | |
parent | 5e2cd07d6f6866b1ddae51a4c9b280d2cd527973 (diff) | |
download | tracifyjs-ec4202590d040942639e01eb8ae83bf7be7180dd.tar.gz tracifyjs-ec4202590d040942639e01eb8ae83bf7be7180dd.zip |
drop assignments to constant expressions only (#2839)
fixes #2838
Diffstat (limited to 'test/compress/pure_getters.js')
-rw-r--r-- | test/compress/pure_getters.js | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/compress/pure_getters.js b/test/compress/pure_getters.js index 80b0e8ea..4e9ae4f4 100644 --- a/test/compress/pure_getters.js +++ b/test/compress/pure_getters.js @@ -694,3 +694,30 @@ issue_2678: { } expect_stdout: "PASS" } + +issue_2838: { + options = { + pure_getters: true, + side_effects: true, + } + input: { + function f(a, b) { + (a || b).c = "PASS"; + (function() { + return f(a, b); + }).prototype.foo = "bar"; + } + var o = {}; + f(null, o); + console.log(o.c); + } + expect: { + function f(a, b) { + (a || b).c = "PASS"; + } + var o = {}; + f(null, o); + console.log(o.c); + } + expect_stdout: "PASS" +} |