JSDOC/TokenReader.vala
[gnome.introspection-doc-generator] / 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();
                         }