From a31c200827b8904c5528376e64df49279fdc427e Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Tue, 22 Sep 2015 17:33:13 +0800 Subject: [PATCH] JSDOC/TokenReader.vala --- JSDOC/TokenReader.vala | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/JSDOC/TokenReader.vala b/JSDOC/TokenReader.vala index 2244139..c74be2b 100644 --- a/JSDOC/TokenReader.vala +++ b/JSDOC/TokenReader.vala @@ -70,19 +70,19 @@ namespace JSDOC { */ /** @cfg {Boolean} collapseWhite merge multiple whitespace/comments into a single token **/ - public bool collapseWhite = false, // only reduces white space... + public bool collapseWhite = false; // only reduces white space... /** @cfg {Boolean} keepDocs keep JSDOC comments **/ - public bool keepDocs = true, + public bool keepDocs = true; /** @cfg {Boolean} keepWhite keep White space **/ - public bool keepWhite = false, + public bool keepWhite = false; /** @cfg {Boolean} keepComments keep all comments **/ - public bool keepComments = false, + public bool keepComments = false; /** @cfg {Boolean} sepIdents seperate identifiers (eg. a.b.c into ['a', '.', 'b', '.', 'c'] ) **/ - public bool sepIdents = false, + public bool sepIdents = false; /** @cfg {String} filename name of file being parsed. **/ public string filename = ""; /** @config {Boolean} ignoreBadGrammer do not throw errors if we find stuff that might break compression **/ - public bool ignoreBadGrammer = false, + public bool ignoreBadGrammer = false; int line = 0; @@ -209,7 +209,7 @@ namespace JSDOC { //Seed.print('(@' + n); var lt = this.lastSym(tokens, n); - + /* //print(JSON.stringify(lt)); if (lt.type != "KEYW" || ["IF", 'WHILE'].indexOf(lt.name) < -1) { if (!this.ignoreBadGrammer) { @@ -219,7 +219,7 @@ namespace JSDOC { } } - + */ } -- 2.39.2