diff options
author | kzc <zaxxon2011@gmail.com> | 2016-12-21 10:52:30 -0500 |
---|---|---|
committer | Richard van Velzen <rvanvelzen1@gmail.com> | 2017-01-19 17:14:33 +0100 |
commit | ec2e5fa3a2e5cf421aebd94b93c668b18e540c69 (patch) | |
tree | a53aa39e78162035803619f0d03800384e9376f4 /test/compress | |
parent | da17766ddda3b89f94706ad7e329faa66a3e3a3e (diff) | |
download | tracifyjs-ec2e5fa3a2e5cf421aebd94b93c668b18e540c69.tar.gz tracifyjs-ec2e5fa3a2e5cf421aebd94b93c668b18e540c69.zip |
Have minify() and tests use figure_out_scope() as uglifyjs CLI does
Clarify docs, help and tests for --support-ie8 and screw_ie8=false
Diffstat (limited to 'test/compress')
-rw-r--r-- | test/compress/screw-ie8.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/test/compress/screw-ie8.js b/test/compress/screw-ie8.js index 0a4e2323..31c448fd 100644 --- a/test/compress/screw-ie8.js +++ b/test/compress/screw-ie8.js @@ -46,6 +46,8 @@ do_screw_try_catch: { } dont_screw_try_catch: { + // This test is known to generate incorrect code for screw_ie8=false. + // Update expected result in the event this bug is ever fixed. options = { screw_ie8: false }; mangle = { screw_ie8: false }; beautify = { screw_ie8: false }; @@ -102,6 +104,8 @@ do_screw_try_catch_undefined: { } dont_screw_try_catch_undefined: { + // This test is known to generate incorrect code for screw_ie8=false. + // Update expected result in the event this bug is ever fixed. options = { screw_ie8: false }; mangle = { screw_ie8: false }; beautify = { screw_ie8: false }; @@ -123,8 +127,8 @@ dont_screw_try_catch_undefined: { } catch (n) { console.log("caught: "+n) } - console.log("undefined is " + void 0); - return void 0===o + console.log("undefined is " + n); + return o === n } } } |