JSDOC/TokenReader.vala
[gnome.introspection-doc-generator] / 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?