2

我在一个需要跟踪的对象上有这个函数,以及调用的父调用者和传递给调用者的参数。

这很好,直到缩小:

var foo = {
    FunctionToBeLogged: function GiveMeAName() {
        console.log('> %s called from %s - args: %o',
                    arguments.callee.name,
                    arguments.callee.caller.name,
                    arguments.callee.caller.arguments);
  }
}

var bar = {
  A: function A(something) {
    foo.FunctionToBeLogged('nothing', 12, true);
  },  
  B: function B(whatever, doesntMatter) {
    foo.FunctionToBeLogged('nothing', 12, true);
  }
}

bar.A(1.2, 'Fred', { });    // > GiveMeAName called from A - args: [1.2, "Fred", Object]
bar.B('Barney', 42, false); // > GiveMeAName called from B - args: ["Barney", 42, false]

缩小摆脱了这些名称,我的输出变为:

bar.A(1.2, 'Fred', { });    // >  called from  - args: [1.2, "Fred", Object]
bar.B('Barney', 42, false); // >  called from  - args: ["Barney", 42, false]

我真的不想去创建函数声明和赋值,因为我有很多它们(我用 7,564 继承了这段代码......我可以轻松地运行一些正则表达式子来命名函数表达式。)

我能做些什么来防止缩小器摆脱我的这些函数名?

4

1 回答 1

2

为了实现这一点,您可以传递特定的名称以使其不被破坏,例如在 UglifyJS 中:

为避免这种情况,您可以使用 --reserved-file 传递一个文件名,该文件名应包含要从修改中排除的名称

在该文件中,您将有一个您不想更改的名称列表,如下所示:

{
  "vars": [ "define", "require", ... ],
  "props": [ "length", "prototype", ... ]
}

Uglify Mangle 选项文档...

于 2016-04-26T18:43:44.503 回答