From 3d6b134b0c2945787eb759dc3aa44f876c3232c8 Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Wed, 7 Dec 2011 08:35:45 +0100 Subject: [PATCH] some debugging statements removed --- xynt-base.js | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) 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"); } -- 2.17.1