From: Alan Knowles Date: Tue, 22 Sep 2015 09:33:58 +0000 (+0800) Subject: JSDOC/TokenReader.vala X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=commitdiff_plain;h=578f5518bab279c173c5bba242f9929884f2c8a3 JSDOC/TokenReader.vala --- 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(); }