Concatenate strings also on the right-hand side of an expression that cannot be evalu...
authorDan Wolff <dan.d.wolff@gmail.com>
Thu, 19 Sep 2013 08:58:50 +0000 (10:58 +0200)
committerMihai Bazon <mihai@bazon.net>
Thu, 19 Sep 2013 10:03:03 +0000 (13:03 +0300)
commit8d14efe818d9a33821a6acc26b612aaf1fd6e967
tree605f3381dd15398f63e0426d46bba915934be1be
parent83ba338bd0e59267080c37bd235e1b0a601edf36
Concatenate strings also on the right-hand side of an expression that cannot be evaluated. Fix #126

E.g. converts:
  a+'Hello'+'World'
to
  a+'HelloWorld'
lib/compress.js
test/compress/issue-126.js [new file with mode: 0644]