renamed tmp var in more explicative inh(erit)
authorMatteo Nastasi <matteo.nastasi@lucinilucini.com>
Wed, 16 Nov 2011 09:21:40 +0000 (10:21 +0100)
committerMatteo Nastasi <matteo.nastasi@lucinilucini.com>
Wed, 16 Nov 2011 09:21:40 +0000 (10:21 +0100)
prova.html

index 07dd606..ccac74a 100644 (file)
@@ -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();