account for catch in constant lambda expressions (#3454)
This commit is contained in:
@@ -3403,6 +3403,12 @@ merge(Compressor.prototype, {
|
|||||||
var inner_scopes = [];
|
var inner_scopes = [];
|
||||||
self.walk(new TreeWalker(function(node, descend) {
|
self.walk(new TreeWalker(function(node, descend) {
|
||||||
if (!result) return true;
|
if (!result) return true;
|
||||||
|
if (node instanceof AST_Catch) {
|
||||||
|
inner_scopes.push(node.argname.scope);
|
||||||
|
descend();
|
||||||
|
inner_scopes.pop();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
if (node instanceof AST_Scope && node !== self) {
|
if (node instanceof AST_Scope && node !== self) {
|
||||||
inner_scopes.push(node);
|
inner_scopes.push(node);
|
||||||
descend();
|
descend();
|
||||||
|
|||||||
Reference in New Issue
Block a user