aboutsummaryrefslogtreecommitdiff
path: root/test/compress/concat-strings.js
AgeCommit message (Expand)Author
2018-07-01fix corner case in `unused`alexlamsl
2017-08-14don't escape null characters as \0 when followed by any digit (#2273)...fixes #2272Erik Desjardins
2017-03-19make `expect_stdout` work on Node.js 0.12 (#1623)...That particular version of Node.js has messed up error messages, so provide a version-specific workaround. Also fixed an formatting issue which would cause `expect_stdout` to fail if error message contains excerpts of input. Apply `expect_stdout` to more applicable tests.Alex Lam S.L
2017-03-02minor improvement to string optimisation (#1514)...- "" + "a" => "a" - "" + a + "b" => a + "b" - "a" + "" => "a" (improving on #45)Alex Lam S.L
2017-02-21improve string concatenation...shuffle associative operations to minimise parentheses and aid other uglification efforts closes #1454 alexlamsl
2016-06-12Escape null characters as \0 unless followed by 0-7.David Bau
2013-09-22More attempts to determine when addition is associative...Somebody hit me with bug reports on this. :) Refs #300 Mihai Bazon