JSDOC/Scope.js
[gnome.introspection-doc-generator] / JSDOC / Scope.js
index 8c5e725..592a532 100644 (file)
@@ -170,13 +170,18 @@ Scope.prototype = {
         }
         
 
-        //println("MUNGE: Scope:" + this.id+"</BR>");
+        
         
         var pickFromSet = 1;
 
         // Do not munge symbols in the global scope!
         if (this.parent) {
-
+            
+            var all = [];
+            for (var i in this.identifiers) {
+                all.push(i);
+            }
+            print("MUNGE: " + all.join(', '));
             
             //println("MUNGE: Building FreeSyms:" + this.id+"</BR>");
             
@@ -192,9 +197,8 @@ Scope.prototype = {
                     freeSymbols.push(batch[i]);
                 }
             }
-            
-            */
-            addSyms(JSDOC.Scope.ones); 
+             
+            addSyms(Scope.ones); 
              
             var repsym = '';
             //println(freeSymbols.toSource());
@@ -206,6 +210,7 @@ Scope.prototype = {
                 
                 
                 if (!this.identifiers[i].toMunge) {
+                    print("SKIP toMunge==false : " + i)
                     continue;
                 }
                 
@@ -234,10 +239,11 @@ Scope.prototype = {
                 //println([     repsym,mungedValue ]);
                 
                 if (this.mungeM && repsym.length < mungedValue.length) {
-                    //println("REPLACE:"+ mungedValue +" with " + repsym + "<BR>");
+                    print("REPLACE:"+ mungedValue +" with " + repsym );    
                     mungedValue = repsym;
                     repsym = '';
                 }
+                
                 identifier.mungedValue =  mungedValue;
             }
             //println("MUNGE: Done " + this.id+"</BR>");
@@ -251,7 +257,7 @@ Scope.prototype = {
     }
  
 
-});
+};