From 0b23433027f63e106dce3c81cffb199eb15f77eb Mon Sep 17 00:00:00 2001 From: alan Date: Mon, 19 Apr 2010 15:49:40 +0800 Subject: [PATCH] JSDOC/Scope.js --- JSDOC/Scope.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/JSDOC/Scope.js b/JSDOC/Scope.js index d03c7aa..f825524 100644 --- a/JSDOC/Scope.js +++ b/JSDOC/Scope.js @@ -176,10 +176,12 @@ Scope.prototype = { // Do not munge symbols in the global scope! if (this.parent) { - print("MUNGE: SCOPE"); + + var all = []; for (var i in this.identifiers) { - print("MUNGE VAR:" + i); + all.push(i); } + print("MUNGE: SCOPE" + all.join(', ')); //println("MUNGE: Building FreeSyms:" + this.id+"
"); -- 2.39.2