renamed tmp var in more explicative inh(erit)
[xynt.git] / 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();