From: alan Date: Mon, 19 Apr 2010 07:49:40 +0000 (+0800) Subject: JSDOC/Scope.js X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=commitdiff_plain;h=0b23433027f63e106dce3c81cffb199eb15f77eb JSDOC/Scope.js --- 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+"
");