From 2273655c17b41ab276172afecd652a297c550c00 Mon Sep 17 00:00:00 2001 From: "Alex Lam S.L" Date: Tue, 19 Dec 2017 22:19:33 +0800 Subject: fix `inline` after single-use `reduce_vars` (#2623) --- lib/compress.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/compress.js b/lib/compress.js index c51a90c1..c95e4f84 100644 --- a/lib/compress.js +++ b/lib/compress.js @@ -4004,7 +4004,9 @@ merge(Compressor.prototype, { var catches = Object.create(null); do { scope = compressor.parent(level++); - if (scope instanceof AST_Catch) { + if (scope instanceof AST_SymbolRef) { + scope = scope.fixed_value(); + } else if (scope instanceof AST_Catch) { catches[scope.argname.name] = true; } } while (!(scope instanceof AST_Scope)); -- cgit v1.2.3