From: Alex Lam S.L Date: Wed, 16 Sep 2020 19:11:57 +0000 (+0100) Subject: fix corner case in `merge_vars` (#4116) X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=2a053710bdafde88c305d318ed2e0196d5dcdfc7;p=UglifyJS.git fix corner case in `merge_vars` (#4116) fixes #4115 --- diff --git a/lib/compress.js b/lib/compress.js index a79b909d..e3139054 100644 --- a/lib/compress.js +++ b/lib/compress.js @@ -4376,6 +4376,12 @@ merge(Compressor.prototype, { pop(); return true; } + if (node instanceof AST_LabeledStatement) { + push(); + node.body.walk(tw); + pop(); + return true; + } if (node instanceof AST_Scope) { if (node instanceof AST_Lambda) { references[node.variables.get("arguments").id] = false; diff --git a/test/compress/merge_vars.js b/test/compress/merge_vars.js index fd650f9d..c63f33d0 100644 --- a/test/compress/merge_vars.js +++ b/test/compress/merge_vars.js @@ -486,3 +486,29 @@ issue_4112: { } expect_stdout: "function" } + +issue_4115: { + options = { + merge_vars: true, + toplevel: true, + } + input: { + L: { + var o = typeof console; + for (var k in o) + break L; + var a = 0; + } + console.log(typeof a); + } + expect: { + L: { + var o = typeof console; + for (var k in o) + break L; + var a = 0; + } + console.log(typeof a); + } + expect_stdout: "undefined" +}