JSDOC/Scope.js
[gnome.introspection-doc-generator] / JSDOC / Scope.js
index 5489651..11bf09e 100644 (file)
@@ -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];
     },