aboutsummaryrefslogtreecommitdiff
path: root/lib/scope.js
diff options
context:
space:
mode:
authorMihai Bazon <mihai@bazon.net>2014-02-14 13:58:14 +0200
committerMihai Bazon <mihai@bazon.net>2014-02-14 13:58:14 +0200
commitbf30dc30383520015bd265e528325c64e5ebe4ce (patch)
tree09f8d70402ba417ab5901f625d39a70ad45abc13 /lib/scope.js
parentef2ef07cbd945c7a6456adedc413858145a9ed10 (diff)
downloadtracifyjs-bf30dc30383520015bd265e528325c64e5ebe4ce.tar.gz
tracifyjs-bf30dc30383520015bd265e528325c64e5ebe4ce.zip
Mangle name of exception when --screw-ie8. Fix #430.
The effect of not mangling it was visible only with --screw-ie8 (otherwise the names would be mangled exactly because they leaked into the parent scope).
Diffstat (limited to 'lib/scope.js')
-rw-r--r--lib/scope.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/scope.js b/lib/scope.js
index cce0f3c5..1ce17fa6 100644
--- a/lib/scope.js
+++ b/lib/scope.js
@@ -365,6 +365,10 @@ AST_Toplevel.DEFMETHOD("mangle_names", function(options){
node.mangled_name = name;
return true;
}
+ if (options.screw_ie8 && node instanceof AST_SymbolCatch) {
+ to_mangle.push(node.definition());
+ return;
+ }
});
this.walk(tw);
to_mangle.forEach(function(def){ def.mangle(options) });