X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=JSDOC%2FScope.js;h=23914787b11daa47ec5959cba6232e2d026f402c;hb=697cb830154e481fff7534c9a3716fe8f7918b59;hp=0606100c0cce9417338472e1b0be69c34c8cae03;hpb=a9599c783019894270e45577a4d911364193be50;p=gnome.introspection-doc-generator diff --git a/JSDOC/Scope.js b/JSDOC/Scope.js index 0606100..2391478 100644 --- a/JSDOC/Scope.js +++ b/JSDOC/Scope.js @@ -6,7 +6,7 @@ * // FIXME - I need this to do next() without doccomments.. */ -Identifier = imports['JSDOC/Identifier.js'].Identifier +Identifier = imports.Identifier.Identifier XObject = imports.XObject.XObject; @@ -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(); } }