X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=JSDOC%2FScope.js;h=6a243e1a09d80a916411275f331aa937f133b85a;hp=0606100c0cce9417338472e1b0be69c34c8cae03;hb=a1df295b5b67d3954ce9949b8393753effbacdd6;hpb=a9599c783019894270e45577a4d911364193be50 diff --git a/JSDOC/Scope.js b/JSDOC/Scope.js index 0606100..6a243e1 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; @@ -23,9 +23,9 @@ function Scope(braceN, parent, startTokN, lastIdent) this.subScopes = []; this.hints = { }; this.ident = lastIdent; + this.gid = Scope.gid++; - - //println("ADD SCOPE(" + this.id + ") TO "+ (parent ? this.parent.id : 'TOP') + "
"); + print("ADD SCOPE(" + this.gid + ") TO "+ (parent ? this.parent.gid : 'TOP')); if (parent) { this.parent.subScopes.push(this); @@ -54,7 +54,7 @@ Scope.prototype = { protectedVars : {}, // only used by to parent.. declareIdentifier : function(symbol, token) { - //println("ADD IDENT(" + this.id + "):" + symbol+"
"); + print("SCOPE : " + this.gid + " : " + token.toString()+""); if (typeof(this.identifiers[symbol])== 'undefined') { @@ -73,7 +73,12 @@ Scope.prototype = { return this.identifiers[symbol]; }, getIdentifier : function(symbol) { - return (typeof(this.identifiers[symbol])== 'undefined') ? false : this.identifiers[symbol]; + if (typeof(this.identifiers[symbol])== 'undefined') { + print("SYMBOL NOT FOUND?" + symbol); + return false; + } + + return this.identifiers[symbol]; }, addHint : function(varName, varType) { @@ -178,8 +183,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 +257,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(); } } @@ -313,4 +318,4 @@ XObject.extend(Scope, { }) // init the scope constants.. Scope.init(); - \ No newline at end of file +Scope.gid = 0; \ No newline at end of file