Files
UglifyJS/test
Alex Lam S.L 65da9acce6 handle var within catch of the same name (#1711)
The following code prints `1`:

var a = 1;
!function(){
  a = 4;
  try{
    throw 2;
  } catch (a) {
    var a = 3;
  }
}();
console.log(a);

fixes #1708
2017-03-28 16:42:39 +08:00
..
2017-03-24 13:19:50 +08:00
2017-02-21 13:29:58 +08:00
2015-12-27 22:38:20 +01:00
2017-03-23 01:31:46 +08:00
2017-03-24 13:19:50 +08:00
2015-10-20 19:48:56 +01:00