From: Alan Knowles Date: Mon, 9 Nov 2015 10:04:57 +0000 (+0800) Subject: JSDOC/ScopeParser.vala X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=commitdiff_plain;h=38a5430b9034886669e25c2c7d7f07d5ab2b160e JSDOC/ScopeParser.vala --- diff --git a/JSDOC/ScopeParser.vala b/JSDOC/ScopeParser.vala index 4f46dbd..459a6a0 100644 --- a/JSDOC/ScopeParser.vala +++ b/JSDOC/ScopeParser.vala @@ -264,7 +264,7 @@ namespace JSDOC { if (this.mode == ScopeParserMode.BUILDING_SYMBOL_TREE) { var identifier = scope.getIdentifier(token.data,token) ; - if (identifier == false) { + if (identifier == null) { scope.declareIdentifier(token.data, token); } else { token.identifier = identifier; @@ -474,7 +474,7 @@ namespace JSDOC { //println("GOT IDENT (2): " + symbol + "
"); identifier = this.getIdentifier(symbol, scope, token); - if (identifier == false) { + if (identifier == null) { // BUG!find out where builtin is defined... if (symbol.length <= 3 && Scope.builtin.indexOf(symbol) < 0) { // Here, we found an undeclared and un-namespaced symbol that is