From 38a5430b9034886669e25c2c7d7f07d5ab2b160e Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Mon, 9 Nov 2015 18:04:57 +0800 Subject: [PATCH] JSDOC/ScopeParser.vala --- JSDOC/ScopeParser.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.2