JSDOC/Scope.js
[gnome.introspection-doc-generator] / JSDOC / Scope.js
index 6a243e1..3a03c4b 100644 (file)
@@ -74,7 +74,11 @@ Scope.prototype = {
     },
     getIdentifier : function(symbol) {
         if (typeof(this.identifiers[symbol])== 'undefined') {
-            print("SYMBOL NOT FOUND?" + symbol);
+            if (['String', 'Date'].indexOf(symbol)) {
+                return false;
+            }
+            
+            print("SCOPE : " + this.gid +" = SYMBOL NOT FOUND?" + symbol);
             return false;
         }