X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=JSDOC%2FScope.js;h=5489651eb033e9f70d75219295e636391535acf9;hb=e5ac31fe1a1ce1bef6c3e30c10c539005ab999f4;hp=342f01841f480e44b2c396d4b2a0dde482ae6b8c;hpb=96bf2cea538bad4477c8d58a925bb85ac3efb608;p=gnome.introspection-doc-generator diff --git a/JSDOC/Scope.js b/JSDOC/Scope.js index 342f018..5489651 100644 --- a/JSDOC/Scope.js +++ b/JSDOC/Scope.js @@ -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) { - print("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) { @@ -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