some debugging statements removed
authorMatteo Nastasi (mop) <nastasi@alternativeoutput.com>
Wed, 7 Dec 2011 07:35:45 +0000 (08:35 +0100)
committerMatteo Nastasi (mop) <nastasi@alternativeoutput.com>
Wed, 7 Dec 2011 07:35:45 +0000 (08:35 +0100)
xynt-base.js

index 35dd58e..8c39a28 100644 (file)
@@ -19,10 +19,11 @@ function Extends(sub)
 
             console.log("LOOP: "+f);
             if( f != "constructor" && typeof(proto[f]) == "function" && !is_last){
-                console.log("M_FU: "+proto['name']+"  F: "+f);
+                console.log("M_FU: "+proto[f]+"  F: "+f);
                 // sub[f] = proto[f];
-                sub[f] = function(){
-                    console.log("INFU PR: " + proto['name'] + " FUNC: "+f+" THIS: " + this);
+                sub[f] = function() {
+                    // console.log("INFU PR: " + proto[f] + " FUNC: "+f+" THIS: " + this);
+                    console.log("SIMPLE LOG");
                     return proto[f].apply(this,arguments);
                 }
             }
@@ -62,9 +63,6 @@ function Extends(sub)
     */
     sub.prototype = inh;
 
-    console.log(sub.prototype.xynt_sup);
-    console.log([ [ "xynt_sup_cl", "zogo" ], sub.prototype.xynt_sup_cl]);
-
     console.log("EXT FINISH");
 }