Age | Commit message (Expand) | Author |
---|---|---|
2017-08-14 | don't escape null characters as \0 when followed by any digit (#2273)...fixes #2272 | Erik Desjardins |
2017-03-19 | make `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-02 | minor improvement to string optimisation (#1514)...- "" + "a" => "a" - "" + a + "b" => a + "b" - "a" + "" => "a" (improving on #45) | Alex Lam S.L |
2017-02-21 | improve string concatenation...shuffle associative operations to minimise parentheses and aid other uglification efforts closes #1454 | alexlamsl |
2016-06-12 | Escape null characters as \0 unless followed by 0-7. | David Bau |
2013-09-22 | More attempts to determine when addition is associative...Somebody hit me with bug reports on this. :) Refs #300 | Mihai Bazon |