X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=JSDOC%2FScope.js;h=84e86daa0eb02a6fe133487d49bfd05158f3be98;hb=2a10119befba6ac7ea16a3df614a64078890158d;hp=d03c7aaca483f0d92722339481ce07e1458aee40;hpb=7780571a02c663a445a90d7da3e767a3bdad25fe;p=gnome.introspection-doc-generator diff --git a/JSDOC/Scope.js b/JSDOC/Scope.js index d03c7aa..84e86da 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"); - for (var i in this.identifiers) { - print("MUNGE VAR:" + i); + + var all = []; + for (var ii in this.identifiers) { + all.push(ii); } + //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) { - print("REPLACE:"+ mungedValue +" with " + repsym ); + //print("REPLACE:"+ mungedValue +" with " + repsym ); mungedValue = repsym; repsym = ''; } @@ -247,8 +252,8 @@ Scope.prototype = { } this.munged = true; //println("Doing sub scopes"); - for (var i = 0; i < this.subScopes.length; i++) { - var ss = this.subScopes[i]; + for (var j = 0; j < this.subScopes.length; j++) { + var ss = this.subScopes[j]; ss.munge(); } }