aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Lam S.L <alexlamsl@gmail.com>2017-12-15 19:41:28 +0800
committerGitHub <noreply@github.com>2017-12-15 19:41:28 +0800
commit7d6907cb99bac1e835febe30494ebca4c1a671d3 (patch)
treebdcd521b213b7eac563541d02bbf7eaddde9c254
parent092d9affb829768e652f14c82080e27893e1f022 (diff)
downloadtracifyjs-7d6907cb99bac1e835febe30494ebca4c1a671d3.tar.gz
tracifyjs-7d6907cb99bac1e835febe30494ebca4c1a671d3.zip
fix `dead_code` on nested `try` (#2599)
fixes #2597
-rw-r--r--lib/compress.js13
-rw-r--r--test/compress/dead-code.js39
2 files changed, 45 insertions, 7 deletions
diff --git a/lib/compress.js b/lib/compress.js
index 0162fa4e..a8bcf54f 100644
--- a/lib/compress.js
+++ b/lib/compress.js
@@ -4751,11 +4751,7 @@ merge(Compressor.prototype, {
node = parent;
parent = compressor.parent(level++);
if (parent instanceof AST_Exit) {
- var try_node = find_try(level);
- if (try_node) {
- if (try_node.bfinally) break;
- if (parent instanceof AST_Throw && try_node.bcatch) break;
- }
+ if (in_try(level, parent instanceof AST_Throw)) break;
if (self.operator == "=") return self.right;
return make_node(AST_Binary, self, {
operator: self.operator.slice(0, -1),
@@ -4787,11 +4783,14 @@ merge(Compressor.prototype, {
}
return self;
- function find_try(level) {
+ function in_try(level, no_catch) {
var scope = self.left.definition().scope;
var parent;
while ((parent = compressor.parent(level++)) !== scope) {
- if (parent instanceof AST_Try) return parent;
+ if (parent instanceof AST_Try) {
+ if (parent.bfinally) return true;
+ if (no_catch && parent.bcatch) return true;
+ }
}
}
});
diff --git a/test/compress/dead-code.js b/test/compress/dead-code.js
index 2d2f9d92..591dd3a9 100644
--- a/test/compress/dead-code.js
+++ b/test/compress/dead-code.js
@@ -789,3 +789,42 @@ throw_assignment: {
"caught -9",
]
}
+
+issue_2597: {
+ options = {
+ dead_code: true,
+ }
+ input: {
+ function f(b) {
+ try {
+ try {
+ throw "foo";
+ } catch (e) {
+ return b = true;
+ }
+ } finally {
+ b && (a = "PASS");
+ }
+ }
+ var a = "FAIL";
+ f();
+ console.log(a);
+ }
+ expect: {
+ function f(b) {
+ try {
+ try {
+ throw "foo";
+ } catch (e) {
+ return b = true;
+ }
+ } finally {
+ b && (a = "PASS");
+ }
+ }
+ var a = "FAIL";
+ f();
+ console.log(a);
+ }
+ expect_stdout: "PASS"
+}