[Pkg-javascript-commits] [uglifyjs] 166/228: fix `unused` on var of the same name within catch (#1716)
Jonas Smedegaard
dr at jones.dk
Sat Apr 15 14:25:27 UTC 2017
This is an automated email from the git hooks/post-receive script.
js pushed a commit to branch master
in repository uglifyjs.
commit c909ffb7156eb99e83afd8e1e75a876039bdc65b
Author: Alex Lam S.L <alexlamsl at gmail.com>
Date: Tue Mar 28 21:25:49 2017 +0800
fix `unused` on var of the same name within catch (#1716)
fixes #1715
---
lib/compress.js | 8 +++-
test/compress/drop-unused.js | 87 ++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 94 insertions(+), 1 deletion(-)
diff --git a/lib/compress.js b/lib/compress.js
index c60f863..64c654d 100644
--- a/lib/compress.js
+++ b/lib/compress.js
@@ -1894,7 +1894,13 @@ merge(Compressor.prototype, {
if (drop_vars && node instanceof AST_Definitions && !(tt.parent() instanceof AST_ForIn)) {
var def = node.definitions.filter(function(def){
if (def.value) def.value = def.value.transform(tt);
- if (def.name.definition().id in in_use_ids) return true;
+ var sym = def.name.definition();
+ if (sym.id in in_use_ids) return true;
+ if (sym.orig[0] instanceof AST_SymbolCatch
+ && sym.scope.parent_scope.find_variable(def.name).orig[0] === def.name) {
+ def.value = def.value && def.value.drop_side_effect_free(compressor);
+ return true;
+ }
var w = {
name : def.name.name,
file : def.name.start.file,
diff --git a/test/compress/drop-unused.js b/test/compress/drop-unused.js
index 10ca549..aa875ec 100644
--- a/test/compress/drop-unused.js
+++ b/test/compress/drop-unused.js
@@ -844,3 +844,90 @@ issue_1709: {
}
expect_stdout: true
}
+
+issue_1715_1: {
+ options = {
+ unused: true,
+ }
+ input: {
+ var a = 1;
+ function f() {
+ a++;
+ try {} catch (a) {
+ var a;
+ }
+ }
+ f();
+ console.log(a);
+ }
+ expect: {
+ var a = 1;
+ function f() {
+ a++;
+ try {} catch (a) {
+ var a;
+ }
+ }
+ f();
+ console.log(a);
+ }
+ expect_stdout: "1"
+}
+
+issue_1715_2: {
+ options = {
+ unused: true,
+ }
+ input: {
+ var a = 1;
+ function f() {
+ a++;
+ try {} catch (a) {
+ var a = 2;
+ }
+ }
+ f();
+ console.log(a);
+ }
+ expect: {
+ var a = 1;
+ function f() {
+ a++;
+ try {} catch (a) {
+ var a;
+ }
+ }
+ f();
+ console.log(a);
+ }
+ expect_stdout: "1"
+}
+
+issue_1715_3: {
+ options = {
+ unused: true,
+ }
+ input: {
+ var a = 1;
+ function f() {
+ a++;
+ try {} catch (a) {
+ var a = 2 + x();
+ }
+ }
+ f();
+ console.log(a);
+ }
+ expect: {
+ var a = 1;
+ function f() {
+ a++;
+ try {} catch (a) {
+ var a = x();
+ }
+ }
+ f();
+ console.log(a);
+ }
+ expect_stdout: "1"
+}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/uglifyjs.git
More information about the Pkg-javascript-commits
mailing list