From 50efdc4b283f3cb7dadbfc032a87e85f74faa2c7 Mon Sep 17 00:00:00 2001 From: Matteo Nastasi Date: Wed, 16 Nov 2011 10:21:40 +0100 Subject: [PATCH] renamed tmp var in more explicative inh(erit) --- prova.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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(); -- 2.17.1