fix cross-scope inlining of AST_Functions (#2486)

fixes #2485
This commit is contained in:
Alex Lam S.L
2017-11-16 10:04:30 +08:00
committed by GitHub
parent ebe761cad0
commit ae28a24c7f
4 changed files with 61 additions and 6 deletions

View File

@@ -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,