JSDOC/TokenReader.vala
authorAlan Knowles <alan@roojs.com>
Tue, 27 Oct 2015 09:19:29 +0000 (17:19 +0800)
committerAlan Knowles <alan@roojs.com>
Tue, 27 Oct 2015 09:19:29 +0000 (17:19 +0800)
JSDOC/TokenReader.vala

index afa405b..f77df4a 100644 (file)
@@ -415,7 +415,11 @@ namespace JSDOC {
                 (stream.look() == '<' && stream.look(1) == '!' && stream.look(2) == '-' && stream.look(3) == '-' && (""!=(found=stream.next(4))))
             ) {
                 var line = this.line;
-                while (!stream.lookEOF() && !Lang.isNewline(stream.look().to_string())) {
+                while (!stream.lookEOF()) {
+                                       print(Lang.isNewline(stream.look().to_string());
+                       if ( !Lang.isNewline(stream.look().to_string())) {
+                               
+                       }
                     found += stream.next();
                 }
                 //if (!stream.lookEOF()) { // what? << eat the EOL?