From 578f5518bab279c173c5bba242f9929884f2c8a3 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Tue, 22 Sep 2015 17:33:58 +0800 Subject: [PATCH] JSDOC/TokenReader.vala --- JSDOC/TokenReader.vala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/JSDOC/TokenReader.vala b/JSDOC/TokenReader.vala index 4ec980b..0619b93 100644 --- a/JSDOC/TokenReader.vala +++ b/JSDOC/TokenReader.vala @@ -474,7 +474,7 @@ namespace JSDOC { */ public bool read_numb (TokenStream stream, TokenArray tokens) { - if (stream.look() === "0" && stream.look(1) == "x") { + if (stream.look() == "0" && stream.look(1) == "x") { return this.read_hex(stream, tokens); } @@ -484,7 +484,7 @@ namespace JSDOC { found += stream.next(); } - if (found === "") { + if (found == "") { return false; } if (GLib.Regex.match_simple("^0[0-7]", found)) { @@ -513,7 +513,7 @@ namespace JSDOC { } return false; - }, + } /** @returns {Boolean} Was the token found? @@ -545,7 +545,7 @@ namespace JSDOC { if (stream.look() == "/") { regex += stream.next(); - while (GLib.Regex.match_simple("[gmi]", stream.look()) { + while (GLib.Regex.match_simple("[gmi]", stream.look())) { regex += stream.next(); } -- 2.39.2