From a9599c783019894270e45577a4d911364193be50 Mon Sep 17 00:00:00 2001 From: alan Date: Mon, 19 Apr 2010 17:50:13 +0800 Subject: [PATCH] JSDOC/Scope.js --- JSDOC/Scope.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/JSDOC/Scope.js b/JSDOC/Scope.js index 1367bb4..0606100 100644 --- a/JSDOC/Scope.js +++ b/JSDOC/Scope.js @@ -181,7 +181,7 @@ Scope.prototype = { for (var i in this.identifiers) { all.push(i); } - print("MUNGE: " + all.join(', ')); + //print("MUNGE: " + all.join(', ')); //println("MUNGE: Building FreeSyms:" + this.id+"
"); @@ -210,12 +210,12 @@ Scope.prototype = { if (!this.identifiers[i].toMunge) { - print("SKIP toMunge==false : " + i) + //print("SKIP toMunge==false : " + i) continue; } if (this.isProtectedVar(i)) { - print("SKIP PROTECTED: " + i) + //print("SKIP PROTECTED: " + i) continue; // } @@ -241,7 +241,7 @@ Scope.prototype = { //println([ repsym,mungedValue ]); if (this.mungeM && repsym.length < mungedValue.length) { - print("REPLACE:"+ mungedValue +" with " + repsym ); + //print("REPLACE:"+ mungedValue +" with " + repsym ); mungedValue = repsym; repsym = ''; } -- 2.39.2