JSDOC/Scope.js
[gnome.introspection-doc-generator] / JSDOC / Scope.js
index d03c7aa..592a532 100644 (file)
@@ -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+"</BR>");
             
@@ -208,6 +210,7 @@ Scope.prototype = {
                 
                 
                 if (!this.identifiers[i].toMunge) {
+                    print("SKIP toMunge==false : " + i)
                     continue;
                 }