JSDOC/Scope.js
authoralan <alan@alanfast.akbkhome.com>
Mon, 19 Apr 2010 07:49:40 +0000 (15:49 +0800)
committeralan <alan@alanfast.akbkhome.com>
Mon, 19 Apr 2010 07:49:40 +0000 (15:49 +0800)
JSDOC/Scope.js

index d03c7aa..f825524 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: SCOPE" + all.join(', '));
             
             //println("MUNGE: Building FreeSyms:" + this.id+"</BR>");