X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=JSDOC%2FScope.js;h=3a03c4b86368f02693a61d2ab6bcb666bb20e540;hp=afd488d1ccef95db790580e0097a8f2f90af8aee;hb=36b2086548e17ebfcff7bffc9a100eefefca1dc1;hpb=05502e1f18a4e2562a4c44c6b83dbbd99f26dbec diff --git a/JSDOC/Scope.js b/JSDOC/Scope.js index afd488d..3a03c4b 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("ADD IDENT(" + this.id + "):" + symbol+""); + 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)) { + return false; + } + + print("SCOPE : " + this.gid +" = SYMBOL NOT FOUND?" + symbol); + return false; + } + + return this.identifiers[symbol]; }, addHint : function(varName, varType) {