diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2020-12-08 17:41:10 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-09 01:41:10 +0800 |
commit | 046bbde9d44a131ec60952e369ec4b22b9718def (patch) | |
tree | 87980753d84fb149ec8ce116671f3ec67ff08cb4 /lib | |
parent | fea9da9866478388dcb6f11d4a792d9aea4a23cd (diff) | |
download | tracifyjs-046bbde9d44a131ec60952e369ec4b22b9718def.tar.gz tracifyjs-046bbde9d44a131ec60952e369ec4b22b9718def.zip |
fix corner case in `keep_fargs` & `reduce_vars` (#4354)
fixes #4353
Diffstat (limited to 'lib')
-rw-r--r-- | lib/compress.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/compress.js b/lib/compress.js index 144a5334..4da13758 100644 --- a/lib/compress.js +++ b/lib/compress.js @@ -904,6 +904,7 @@ merge(Compressor.prototype, { reset_variables(tw, compressor, fn); descend(); pop(tw); + if (fn.name) mark_escaped(tw, fn.name.definition(), fn, fn.name, fn, 0, 1); walk_defuns(tw, fn); } return true; |