X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=JSDOC%2FScope.js;h=11bf09eaf6bdaddc0e1048b8f9ea417c5feaeb3b;hp=5489651eb033e9f70d75219295e636391535acf9;hb=091d871eb0c2a8bbdfbba3aefe404bfc09356f89;hpb=e5ac31fe1a1ce1bef6c3e30c10c539005ab999f4 diff --git a/JSDOC/Scope.js b/JSDOC/Scope.js index 5489651..11bf09e 100644 --- a/JSDOC/Scope.js +++ b/JSDOC/Scope.js @@ -54,7 +54,7 @@ Scope.prototype = { protectedVars : {}, // only used by to parent.. declareIdentifier : function(symbol, token) { - print("SCOPE : " + this.gid " : " + token.toString()+""); + print("SCOPE : " + this.gid + " : " + token.toString()+""); if (typeof(this.identifiers[symbol])== 'undefined') { @@ -74,10 +74,14 @@ Scope.prototype = { }, getIdentifier : function(symbol) { if (typeof(this.identifiers[symbol])== 'undefined') { - print("SYMBOL NOT FOUND?" + symbol); + 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]; },