X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=JSDOC%2FCompressWhite.js;h=86ef6fad5be8defbd04ae09ae38954a25911a18e;hp=55687add6203ce58e4536bfe203703f5dbf86576;hb=a9487df5d536aba5631a5ed4ad332bea3e7857db;hpb=b94a7b7e38bea0b31a79e3988920073c1cfad8df diff --git a/JSDOC/CompressWhite.js b/JSDOC/CompressWhite.js index 55687ad..86ef6fa 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; @@ -71,13 +72,37 @@ CompressWhite = function (ts, packer) //println("got = function() "); var cu = ts.cursor; - ts.balance("("); - ts.balance("{"); + if (!ts.balance("(") ){ + ts.dump(cu-40, cu); + print(">>>>>>>>>>>>>>>>>HERE>>>>>>>>>>>>"); + ts.dump(cu, cu+40); + + throw "could not find end lbrace!!!"; + } + //print("AFTER BALANCE ("); + //ts.dump(cu, ts.cursor); + //ts.cursor--; // cursor at the ( + if (!ts.balance("{") ){ + ts.dump(cu-40, cu); + print(">>>>>>>>>>>>>>>>>HERE>>>>>>>>>>>>"); + ts.dump(cu, cu+40); + + throw "could not find end lbrace!!!"; + } + //print('FN: '+ts.tokens[cu].toString()); + //print('F1: '+ts.lookTok(1).toString()); + //print('F2: '+ts.look(1,true).toString()); + // if next is not ';' -> make it so... // although this var a=function(){},v,c; causes - if (ts.lookTok(1).data != ';' && ts.lookTok(1).data != '}' && ts.lookTok(1,true).name == "NEWLINE") { + if (ts.lookTok(1).data != ';' && ts.lookTok(1).data != '}' && ts.look(1,true).name == "NEWLINE") { + ts.look(0).outData = ts.look(0).data+";"; + // print("ADDING SEMI: " + ts.look(0).toString()); + //ts.dump(cu, ts.cursor+2); } + + //ts.dump(cu, ts.cursor+2); // restore.. ts.cursor = cu; continue; @@ -139,8 +164,7 @@ CompressWhite = function (ts, packer) throw "could not find end lbrace!!!"; } // if next is not ';' -> make it so... - print(ts.lookTok(1).toString()); - print(ts.lookTok(1,true).toString()); + if (ts.lookTok(1).data != ';' && ts.lookTok(1).data != '}' && ts.look(1,true).name=="NEWLINE") { ts.look(0).outData = ts.look(0).data +";"; } @@ -151,37 +175,7 @@ CompressWhite = function (ts, packer) // any more?? // a = function(....) { } - // print(ts.lookTok(2).toString()); - if (ts.lookTok(1).data == '=' && ts.lookTok(2).name == 'FUNCTION' ) { - // freeze time.. - print("compress white : got a = function "); - var cu = ts.cursor; - ts.balance("("); - if (!ts.balance("(") ){ - ts.dump(cu-40, cu); - print(">>>>>>>>>>>>>>>>>HERE>>>>>>>>>>>>"); - ts.dump(cu, cu+40); - - throw "could not find end lbrace!!!"; - } - if (!ts.balance("{") ){ - ts.dump(cu-40, cu); - print(">>>>>>>>>>>>>>>>>HERE>>>>>>>>>>>>"); - ts.dump(cu, cu+40); - - throw "could not find end lbrace!!!"; - } - // if next is not ';' -> make it so... - print(ts.lookTok(1).toString()); - print(ts.lookTok(1,true).toString()); - if (ts.lookTok(1).data != ';' && ts.lookTok(1).data != '}' && ts.look(1,true).name=="NEWLINE") { - ts.look(0).outData = ts.look(0).data +";"; - } - // restore.. - ts.cursor = cu; - continue; - } - + } @@ -277,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 == '\n'; + } if (!tok) { break; }