我有私有函数 createSomething():
function Player(id) {
/**
* Creates stuff
* @private
*/
this.createSomething = function() {
// do something good
};
}
并且我想在使用 Google Closure Compiler 编译源代码后查看重命名的函数“createSomething()”。是的,我知道 ADVANCED_OPTIMIZATIONS 但它与 jQuery 和其他库不兼容。