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

index 11a853a..e3e6096 100644 (file)
@@ -290,9 +290,11 @@ namespace JSDOC {
             }
             //print("WHITE = " + JSON.stringify(found)); 
             if (this.collapseWhite) {
-                found = " "; // this might work better if it was a ';' ???
+                found = " "; // this might work better if it was a '\n' ???
+            }
+            if (this.keepWhite) {
+                tokens.push(new Token(found, "WHIT", "SPACE", this.line));
             }
-            if (this.keepWhite) tokens.push(new Token(found, "WHIT", "SPACE", this.line));
             return true;
         
         },