From: Matteo Nastasi Date: Wed, 16 Nov 2011 09:21:40 +0000 (+0100) Subject: renamed tmp var in more explicative inh(erit) X-Git-Url: http://mop.ddnsfree.com/gitweb/?p=xynt.git;a=commitdiff_plain;h=50efdc4b283f3cb7dadbfc032a87e85f74faa2c7 renamed tmp var in more explicative inh(erit) --- diff --git a/prova.html b/prova.html index 07dd606..ccac74a 100644 --- a/prova.html +++ b/prova.html @@ -148,7 +148,7 @@ function Extends(sub) var supers = []; thinF = function(){}; - tmp = new thinF(); + inh = new thinF(); console.log("INIZIO EXT"); @@ -175,11 +175,11 @@ function Extends(sub) for( var i=1; i < arguments.length ; i++){ console.log("INIZIO LOOP"); - multi(tmp, arguments[i], false); + multi(inh, arguments[i], false); supers.push(arguments[i].prototype); } - multi(tmp, sub, true); - sub.prototype = tmp; + multi(inh, sub, true); + sub.prototype = inh; } s_ist = new Summo();