Purpose of (0, obj.method)(param1, param2) in Closure Compiler minified code

ぃ、小莉子 提交于 2019-12-01 16:37:40

问题


What is this approach for? For instance, from the Google OAuth API:

(0, _.Q)("gapi.auth.authorize", _.Ek.Ff);
(0, _.Q)("gapi.auth.checkSessionState", _.Ek.MH);
(0, _.Q)("gapi.auth.getAuthHeaderValueForFirstParty", _.Ek.Qe);
(0, _.Q)("gapi.auth.getToken", _.Ek.$f);
(0, _.Q)("gapi.auth.getVersionInfo", _.Ek.Wk);
(0, _.Q)("gapi.auth.init", _.Ek.gb);
(0, _.Q)("gapi.auth.setToken", _.Ek.Ym);

To me, this would seem to be identical to simply outputting

_.Q("gapi.auth.authorize", _.Ek.Ff);
_.Q("gapi.auth.checkSessionState", _Ek.MH);
...

I'm assuming it isn't. so what's the difference?


回答1:


The compiler is ensuring the "this" value is correct:

a.f()  // 'this' value is "a"
(0, a.f)()  // 'this' is the default "this" value

The reason you see this in the OAuth API is the code is using the "rescope global symbols" compiler pass. This pass places symbols that would otherwise be introduced into global scope to communicate across function scopes (IIFEs) onto a object. So code like this:

function f();

// some potentially late loaded code
f();

becomes:

(function(_){
  _.f = function() {};
})(something);

(function(_){
  _.f();
})(something);

But here "f"'s 'this' value has changed from the default 'this' to "_". To prevent that change from happening, "(0, _.f)()" is used instead.

This is an area where the compiler could improve because it does this even in cases where it can determine that "this" is not used in the body of the function.



来源:https://stackoverflow.com/questions/18626022/purpose-of-0-obj-methodparam1-param2-in-closure-compiler-minified-code

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!