aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/compress.js8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/compress.js b/lib/compress.js
index 3f7eee68..25a993f6 100644
--- a/lib/compress.js
+++ b/lib/compress.js
@@ -4449,7 +4449,9 @@ merge(Compressor.prototype, {
segment.block = node;
walk_body(node, tw);
if (node.bcatch) {
- references[node.bcatch.argname.definition().id] = false;
+ var def = node.bcatch.argname.definition();
+ references[def.id] = false;
+ if (def = def.redefined()) references[def.id] = false;
pop();
push();
walk_body(node.bcatch, tw);
@@ -4843,8 +4845,10 @@ merge(Compressor.prototype, {
&& !compressor.option("ie8")
&& var_defs.length == 1
&& sym.assignments == 0
- && def.value === def.name.fixed_value()
&& def.value instanceof AST_Function
+ && (sym.references.length ? all(sym.references, function(ref) {
+ return def.value === ref.fixed_value();
+ }) : def.value === def.name.fixed_value())
&& (!def.value.name || (old_def = def.value.name.definition()).assignments == 0
&& (old_def.name == def.name.name || all(old_def.references, function(ref) {
return ref.scope.find_variable(def.name) === def.name.definition();