From: Alan Knowles Date: Tue, 15 Sep 2015 09:11:52 +0000 (+0800) Subject: JSDOC/TokenReader.vala X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=commitdiff_plain;h=cec8dfd0781a5265d518eec19209e2aa59a05afc JSDOC/TokenReader.vala --- diff --git a/JSDOC/TokenReader.vala b/JSDOC/TokenReader.vala index 11a853a..e3e6096 100644 --- a/JSDOC/TokenReader.vala +++ b/JSDOC/TokenReader.vala @@ -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; },