X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=JSDOC%2FScope.js;h=0606100c0cce9417338472e1b0be69c34c8cae03;hb=a9599c783019894270e45577a4d911364193be50;hp=e91273646a4de7094e91884653b0191e4002a8e5;hpb=18a2fc9c73ff01f7f9febbf671344a0a4ca1b68f;p=gnome.introspection-doc-generator diff --git a/JSDOC/Scope.js b/JSDOC/Scope.js index e912736..0606100 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: " + all.join(', ')); //println("MUNGE: Building FreeSyms:" + this.id+"
"); @@ -208,18 +210,21 @@ Scope.prototype = { if (!this.identifiers[i].toMunge) { + //print("SKIP toMunge==false : " + i) continue; } if (this.isProtectedVar(i)) { + //print("SKIP PROTECTED: " + i) continue; // } - if (this.identifiers[i].constructor != Identifier) { - continue; - } + //if (this.identifiers[i].constructor != Identifier) { + // print("SKIP NOT IDENTIFIER : " + i) + // continue; + // } // println("IDENT:" +i+'
'); if (!repsym.length) { @@ -236,7 +241,7 @@ Scope.prototype = { //println([ repsym,mungedValue ]); if (this.mungeM && repsym.length < mungedValue.length) { - println("REPLACE:"+ mungedValue +" with " + repsym + "
"); + //print("REPLACE:"+ mungedValue +" with " + repsym ); mungedValue = repsym; repsym = ''; }