JSDOC/Template.js
[gnome.introspection-doc-generator] / JSDOC / Scope.js
index 0606100..84e86da 100644 (file)
@@ -178,8 +178,8 @@ 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(', '));
             
@@ -252,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();
         }
     }