diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2019-11-28 07:40:34 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-28 07:40:34 +0800 |
commit | 5a88c30d6598bc9ec6d3b81077a95ab6942da9cd (patch) | |
tree | dff8d0e511b33f8142c152bab5885b19eec36c80 /test | |
parent | 168ae747ad8c8c48a0318eaaffd25e084521fb60 (diff) | |
download | tracifyjs-5a88c30d6598bc9ec6d3b81077a95ab6942da9cd.tar.gz tracifyjs-5a88c30d6598bc9ec6d3b81077a95ab6942da9cd.zip |
enhance `assignments` (#3612)
Diffstat (limited to 'test')
-rw-r--r-- | test/compress/assignment.js | 42 |
1 files changed, 38 insertions, 4 deletions
diff --git a/test/compress/assignment.js b/test/compress/assignment.js index 5ca7440a..2230272a 100644 --- a/test/compress/assignment.js +++ b/test/compress/assignment.js @@ -290,26 +290,60 @@ increment_decrement_2: { expect_stdout: "42" } -issue_3375: { +issue_3375_1: { options = { assignments: true, reduce_vars: true, } input: { - console.log(typeof function(b) { + function p(o) { + console.log(typeof o, o); + } + p(function(b) { var a = b += 1; --b; return a; }("object")); } expect: { - console.log(typeof function(b) { + function p(o) { + console.log(typeof o, o); + } + p(function(b) { var a = b += 1; --b; return a; }("object")); } - expect_stdout: "string" + expect_stdout: "string object1" +} + +issue_3375_2: { + options = { + assignments: true, + reduce_vars: true, + } + input: { + function p(o) { + console.log(typeof o, o); + } + p(function(b) { + var a = b -= 1; + --b; + return a; + }("object")); + } + expect: { + function p(o) { + console.log(typeof o, o); + } + p(function(b) { + var a = --b; + --b; + return a; + }("object")); + } + expect_stdout: "number NaN" } issue_3427: { |