X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=JSDOC%2FTokenReader.js;h=2657ccdd47e1867fd3ad5b6114b82c8670b25c6b;hb=f3c7ddeadbe815a07cb3fc8f2e78adc4627cba2c;hp=3db1c0912431dfd7cf201f581f2e1d5a49889608;hpb=bf500865bb6f0354292bdd255e6c39c87f7e113e;p=gnome.introspection-doc-generator diff --git a/JSDOC/TokenReader.js b/JSDOC/TokenReader.js index 3db1c09..2657ccd 100644 --- a/JSDOC/TokenReader.js +++ b/JSDOC/TokenReader.js @@ -130,15 +130,14 @@ TokenReader = XObject.define( read_space : function(/**JSDOC.TokenStream*/stream, tokens) { var found = ""; - while (!stream.look().eof && Lang.isSpace(stream.look())) { - if (Lang.isNewline(stream.look())) break; + while (!stream.look().eof && Lang.isSpace(stream.look()) && !Lang.isNewline(stream.look())) { found += stream.next(); } if (found === "") { return false; } - print("WHITE = " + JSON.stringify(found)); + //print("WHITE = " + JSON.stringify(found)); if (this.collapseWhite) found = " "; if (this.keepWhite) tokens.push(new Token(found, "WHIT", "SPACE", this.line)); return true;