JSDOC/TokenReader.vala
authorAlan Knowles <alan@roojs.com>
Tue, 22 Sep 2015 09:33:58 +0000 (17:33 +0800)
committerAlan Knowles <alan@roojs.com>
Tue, 22 Sep 2015 09:33:58 +0000 (17:33 +0800)
JSDOC/TokenReader.vala

index 4ec980b..0619b93 100644 (file)
@@ -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();
                         }