X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=JSDOC%2FScope.js;h=f82552460d1382b3aaf21b7a8ade1353e83c50ca;hp=d03c7aaca483f0d92722339481ce07e1458aee40;hb=0b23433027f63e106dce3c81cffb199eb15f77eb;hpb=7780571a02c663a445a90d7da3e767a3bdad25fe 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+"
");