From: Matteo Nastasi (mop) Date: Wed, 7 Dec 2011 07:35:45 +0000 (+0100) Subject: some debugging statements removed X-Git-Url: https://mop.ddnsfree.com/gitweb/?p=xynt.git;a=commitdiff_plain;h=3d6b134b0c2945787eb759dc3aa44f876c3232c8 some debugging statements removed --- 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"); }