aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorAlex Lam S.L <alexlamsl@gmail.com>2017-11-16 10:04:30 +0800
committerGitHub <noreply@github.com>2017-11-16 10:04:30 +0800
commitae28a24c7f7919d8de1c3044f28571ebe2036850 (patch)
treeddcc46bb6e6acd01685507b1b735b7bb7c082f33 /bin
parentebe761cad09343e514a7a02b591dbb93f651c888 (diff)
downloadtracifyjs-ae28a24c7f7919d8de1c3044f28571ebe2036850.tar.gz
tracifyjs-ae28a24c7f7919d8de1c3044f28571ebe2036850.zip
fix cross-scope inlining of `AST_Function`s (#2486)
fixes #2485
Diffstat (limited to 'bin')
-rwxr-xr-xbin/uglifyjs2
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,