From ac314692996f502059bcee48b7efbe5d2fbcf3ba Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Tue, 15 Sep 2015 17:11:13 +0800 Subject: [PATCH] JSDOC/TokenReader.vala --- JSDOC/TokenReader.vala | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/JSDOC/TokenReader.vala b/JSDOC/TokenReader.vala index 631fe34..b4127d7 100644 --- a/JSDOC/TokenReader.vala +++ b/JSDOC/TokenReader.vala @@ -244,7 +244,7 @@ namespace JSDOC { { string found = ""; var name; - while (!stream.look().eof && Lang.punc(found + stream.look()).length > 0) { + while (!stream.lookEOF() && Lang.punc(found + stream.look()).length > 0) { found += stream.next(); } @@ -272,15 +272,16 @@ namespace JSDOC { tokens.push(new Token(found, "PUNC", Lang.punc(found), this.line)); return true; - }, + } /** @returns {Boolean} Was the token found? */ - read_space : function(/**JSDOC.TokenStream*/stream, tokens) { + public bool read_space (TokenStream stream, TokenArray tokens) + { var found = ""; - while (!stream.look().eof && Lang.isSpace(stream.look()) && !Lang.isNewline(stream.look())) { + while (!stream.lookEOF() && Lang.isSpace(stream.look()) && !Lang.isNewline(stream.look())) { found += stream.next(); } @@ -288,7 +289,9 @@ namespace JSDOC { return false; } //print("WHITE = " + JSON.stringify(found)); - if (this.collapseWhite) found = " "; + if (this.collapseWhite) { + found = " "; + } if (this.keepWhite) tokens.push(new Token(found, "WHIT", "SPACE", this.line)); return true; @@ -297,7 +300,7 @@ namespace JSDOC { /** @returns {Boolean} Was the token found? */ - read_newline : function(/**JSDOC.TokenStream*/stream, tokens) { + public bool read_newline (TokenStream stream, TokenArray tokens) var found = ""; var line = this.line; while (!stream.look().eof && Lang.isNewline(stream.look())) { -- 2.39.2