X-Git-Url: http://mop.ddnsfree.com/gitweb/?p=xynt.git;a=blobdiff_plain;f=xynt-base.js;h=8c39a2812a38ed031ae4077ac9d66e157b71b617;hp=35dd58e271fd78bb3d8b790dd229add034012418;hb=3d6b134b0c2945787eb759dc3aa44f876c3232c8;hpb=9ddb2e6830b72bfe57891a53445fe073ee32ea42 diff --git a/xynt-base.js b/xynt-base.js index 35dd58e..8c39a28 100644 --- a/xynt-base.js +++ b/xynt-base.js @@ -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"); }