From 6a099fba66eba896755f5a723a9d08034faee615 Mon Sep 17 00:00:00 2001 From: Mihai Bazon Date: Wed, 17 Oct 2012 16:17:14 +0300 Subject: [PATCH] define aborts on AST_If: true if both branches abort --- lib/compress.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/compress.js b/lib/compress.js index 4a51a49f..d2e3ffc7 100644 --- a/lib/compress.js +++ b/lib/compress.js @@ -349,9 +349,7 @@ merge(Compressor.prototype, { extract_declarations_from_unreachable_code(compressor, stat, a); } else { a.push(stat); - if (stat instanceof AST_Jump) { - has_quit = true; - } + if (aborts(stat)) has_quit = true; } return a; }, []); @@ -771,6 +769,9 @@ merge(Compressor.prototype, { var n = this.body.length; return n > 0 && aborts(this.body[n - 1]); }); + def(AST_If, function(){ + return this.alternative && aborts(this.body) && aborts(this.alternative); + }); })(function(node, func){ node.DEFMETHOD("aborts", func); }); -- 2.34.1