X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=JSDOC%2FScope.js;h=84e86daa0eb02a6fe133487d49bfd05158f3be98;hb=d56985f1898989ac6236528f762e69837f185914;hp=0606100c0cce9417338472e1b0be69c34c8cae03;hpb=a9599c783019894270e45577a4d911364193be50;p=gnome.introspection-doc-generator diff --git a/JSDOC/Scope.js b/JSDOC/Scope.js index 0606100..84e86da 100644 --- a/JSDOC/Scope.js +++ b/JSDOC/Scope.js @@ -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(); } }