X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=JSDOC%2FCompressWhite.js;h=38d377022304020e5c9c9c63ff4420f704dc1454;hp=1698649c5109d21a0afaf3dd216e90004590dcd6;hb=dc93f423cc6c9b92289555a329676324665929a9;hpb=4798a0d56fd9a8912713de2edfe435bf9575223b diff --git a/JSDOC/CompressWhite.js b/JSDOC/CompressWhite.js index 1698649..38d3770 100644 --- a/JSDOC/CompressWhite.js +++ b/JSDOC/CompressWhite.js @@ -8,9 +8,9 @@ @arg packer {Packer} */ -CompressWhite = function (ts, packer) +CompressWhite = function (ts, packer, keepWhite) { - + keepWhite = keepWhite || false; ts.rewind(); //var str = File.read(fn); var rep_var = 1; @@ -21,6 +21,7 @@ CompressWhite = function (ts, packer) break; } if (tok.type == "WHIT") { + continue; //if (tok._isDoc) { // continue; @@ -79,7 +80,7 @@ CompressWhite = function (ts, packer) throw "could not find end lbrace!!!"; } //print("AFTER BALANCE ("); - ts.dump(cu, ts.cursor); + //ts.dump(cu, ts.cursor); //ts.cursor--; // cursor at the ( if (!ts.balance("{") ){ ts.dump(cu-40, cu); @@ -270,9 +271,13 @@ CompressWhite = function (ts, packer) var outoff = 0; out.length = ts.slen; // prealloc. out = ''; + var tok; while (true) { - var tok = ts.nextTok(); - + + tok = keepWhite ? ts.next() : ts.nextTok(); + if (tok.type == "COMM") { + tok.outDate == ' '; + } if (!tok) { break; }