X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=JSDOC%2FScope.js;h=5fe7403f1007939bf227d9de5dde693eaebe83ec;hp=6a243e1a09d80a916411275f331aa937f133b85a;hb=bb1da2c04b0e59e75cff3317798af860f3439a11;hpb=a1df295b5b67d3954ce9949b8393753effbacdd6 diff --git a/JSDOC/Scope.js b/JSDOC/Scope.js index 6a243e1..5fe7403 100644 --- a/JSDOC/Scope.js +++ b/JSDOC/Scope.js @@ -10,7 +10,7 @@ Identifier = imports.Identifier.Identifier XObject = imports.XObject.XObject; -function Scope(braceN, parent, startTokN, lastIdent) +function Scope(braceN, parent, startTokN, lastIdent, token) { if (lastIdent.length) { // println("NEW SCOPE: " + lastIdent); @@ -25,7 +25,8 @@ function Scope(braceN, parent, startTokN, lastIdent) this.ident = lastIdent; this.gid = Scope.gid++; - print("ADD SCOPE(" + this.gid + ") TO "+ (parent ? this.parent.gid : 'TOP')); + print("ADD SCOPE(" + this.gid + ") TO "+ (parent ? this.parent.gid : 'TOP') + ' : ' + + (token ? token.toString() : '')); if (parent) { this.parent.subScopes.push(this); @@ -72,12 +73,16 @@ Scope.prototype = { this.addToParentScope(symbol); return this.identifiers[symbol]; }, - getIdentifier : function(symbol) { + getIdentifier : function(symbol, token) { 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?" + token.toString()); return false; } - + print("SCOPE : " + this.gid +" = FOUND:" + token.toString()); return this.identifiers[symbol]; },