我在一个需要跟踪的对象上有这个函数,以及调用的父调用者和传递给调用者的参数。
这很好,直到缩小:
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 继承了这段代码......我可以轻松地运行一些正则表达式子来命名函数表达式。)
我能做些什么来防止缩小器摆脱我的这些函数名?