JSDOC/Template.js
[gnome.introspection-doc-generator] / JSDOC / Scope.js
index 05a7cdb..84e86da 100644 (file)
@@ -178,10 +178,10 @@ Scope.prototype = {
         if (this.parent) {
             
             var all = [];
-            for (var i in this.identifiers) {
-                all.push(i);
+            for (var ii in this.identifiers) {
+                all.push(ii);
             }
-            print("MUNGE: " + all.join(', '));
+            //print("MUNGE: " + all.join(', '));
             
             //println("MUNGE: Building FreeSyms:" + this.id+"</BR>");
             
@@ -210,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+'</BR>');
                 
                 if (!repsym.length) {
@@ -238,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 = '';
                 }
@@ -249,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();
         }
     }