diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2017-11-16 10:04:30 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-16 10:04:30 +0800 |
commit | ae28a24c7f7919d8de1c3044f28571ebe2036850 (patch) | |
tree | ddcc46bb6e6acd01685507b1b735b7bb7c082f33 /bin | |
parent | ebe761cad09343e514a7a02b591dbb93f651c888 (diff) | |
download | tracifyjs-ae28a24c7f7919d8de1c3044f28571ebe2036850.tar.gz tracifyjs-ae28a24c7f7919d8de1c3044f28571ebe2036850.zip |
fix cross-scope inlining of `AST_Function`s (#2486)
fixes #2485
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/uglifyjs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/uglifyjs b/bin/uglifyjs index 8cbb3cad..04c402d3 100755 --- a/bin/uglifyjs +++ b/bin/uglifyjs @@ -15,7 +15,7 @@ var path = require("path"); var program = require("commander"); var UglifyJS = require("../tools/node"); -var skip_keys = [ "cname", "enclosed", "parent_scope", "scope", "thedef", "uses_eval", "uses_with" ]; +var skip_keys = [ "cname", "enclosed", "inlined", "parent_scope", "scope", "thedef", "uses_eval", "uses_with" ]; var files = {}; var options = { compress: false, |