diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2019-10-14 13:34:35 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-14 13:34:35 +0800 |
commit | a39bdb584097b376250e6d09cd9ee9453b9f43de (patch) | |
tree | 376cb17c90359d504fdc208caf1a842d50f643d6 /lib/compress.js | |
parent | e8ab0a44b214527a46053c7d0600414c0c9899f3 (diff) | |
download | tracifyjs-a39bdb584097b376250e6d09cd9ee9453b9f43de.tar.gz tracifyjs-a39bdb584097b376250e6d09cd9ee9453b9f43de.zip |
fix corner case with `collapse_vars` & `ie8` (#3469)
fixes #3468
Diffstat (limited to 'lib/compress.js')
-rw-r--r-- | lib/compress.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/compress.js b/lib/compress.js index 29ef07c3..06ba43c0 100644 --- a/lib/compress.js +++ b/lib/compress.js @@ -896,8 +896,7 @@ merge(Compressor.prototype, { if (lhs instanceof AST_This) return true; if (lhs instanceof AST_SymbolRef) { var def = lhs.definition(); - return def.orig[0] instanceof AST_SymbolLambda - || compressor.exposed(def) && identifier_atom[def.name]; + return def.lambda || compressor.exposed(def) && identifier_atom[def.name]; } if (lhs instanceof AST_PropAccess) { lhs = lhs.expression; |