JSDOC/TokenReader.vala
authorAlan Knowles <alan@roojs.com>
Thu, 10 Sep 2015 10:24:19 +0000 (18:24 +0800)
committerAlan Knowles <alan@roojs.com>
Thu, 10 Sep 2015 10:24:19 +0000 (18:24 +0800)
JSDOC/TokenReader.vala

index 7c45861..487bf3d 100644 (file)
@@ -102,7 +102,9 @@ namespace JSDOC {
                 if (this.read_word(stream, tokens))      continue;
                 
                 // if execution reaches here then an error has happened
                 if (this.read_word(stream, tokens))      continue;
                 
                 // if execution reaches here then an error has happened
-                tokens.push(new Token(stream.next(), "TOKN", "UNKNOWN_TOKEN", this.line));
+                tokens.push(
+                        new Token(stream.next(), "TOKN", "UNKNOWN_TOKEN", this.line
+                ));
             }
             
             
             }