aboutsummaryrefslogtreecommitdiff
path: root/test/compress/issue-1704.js
AgeCommit message (Collapse)Author
2017-03-28handle var within catch of the same name (#1711)Alex Lam S.L
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-28fix mangle for variable declared within catch block (#1706)Alex Lam S.L
fixes #1704