X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=JSDOC%2FScope.js;h=727d2342b77b6408a86e02d668f2ee9b5b87b559;hp=b6539b503b731bfa7473c9df7d845c4459cdeded;hb=5670ccb0cb1854a9c088b6d45531e95e48015a1e;hpb=c0db3686ab0ee45fe9ba6542e93d73e7b77459e8 diff --git a/JSDOC/Scope.js b/JSDOC/Scope.js index b6539b5..727d234 100644 --- a/JSDOC/Scope.js +++ b/JSDOC/Scope.js @@ -25,7 +25,7 @@ function Scope(braceN, parent, startTokN, lastIdent) 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("SCOPE : " + this.gid + " ADD IDENT(" + this.id + "):" + token.toString()+""); + print("SCOPE : " + this.gid + " : " + token.toString()+""); if (typeof(this.identifiers[symbol])== 'undefined') { @@ -73,7 +73,16 @@ 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') { + if (['String', 'Date'].indexOf(symbol)> -1) { + return false; + } + + print("SCOPE : " + this.gid +" = SYMBOL NOT FOUND?" + symbol); + return false; + } + print("SCOPE : " + this.gid +" = FOUND:" + symbol); + return this.identifiers[symbol]; }, addHint : function(varName, varType) {