Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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?

like image 696
Stephen Touset Avatar asked Sep 05 '13 00:09

Stephen Touset


1 Answers

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.

like image 153
John Avatar answered Sep 29 '22 19:09

John