JSDOC/Scope.js
[gnome.introspection-doc-generator] / JSDOC / Scope.js
index b6539b5..4845435 100644 (file)
@@ -73,7 +73,12 @@ 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') {
+            print("SYMBOL NOT FOUND?" + symbol);
+            return false;
+        }
+        
+        return this.identifiers[symbol];
     },
     
     addHint : function(varName, varType) {