X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=JSDOC%2FCompressWhite.js;h=9ff469b0e88b96342a5406365aa80d3c49958d4c;hb=c1024b4b5c81d08f82dfbac13c002d0fd1bff7a6;hp=d62cf2ba78bebbe5804cbee2e5c876783d10a50e;hpb=9d863749e16f5ebe12e7d16fa3f059d91fc2a97b;p=gnome.introspection-doc-generator diff --git a/JSDOC/CompressWhite.js b/JSDOC/CompressWhite.js index d62cf2b..9ff469b 100644 --- a/JSDOC/CompressWhite.js +++ b/JSDOC/CompressWhite.js @@ -32,7 +32,16 @@ CompressWhite = function (ts, packer) } - + if (tok.data == "}") { + + if (ts.lookTok(1).type == 'NAME' && ts.look(1,true).name == "NEWLINE") { + + ts.look(0).outData = ts.look(0).data+"\n"; + } + // restore.. + + continue; + } // add semi-colon's where linebreaks are used... - not foolproof yet.! if (tok.type == "NAME") { //var tokident = ts.look(-1).data + tok.data + ts.look(1).data + ts.look(2).data; @@ -84,9 +93,9 @@ CompressWhite = function (ts, packer) ts.balance("("); // although this var a=function(){},v,c; causes - print("()LF : " +ts.lookTok(1).toString()); - print("()LF : " +ts.look(1,true).toString()); - if (ts.lookTok(1).type == 'NAME' && ts.lookTok(1,true).name == "NEWLINE") { + + if (ts.lookTok(1).type == 'NAME' && ts.look(1,true).name == "NEWLINE") { + ts.look(0).outData = ts.look(0).data+"\n"; } // restore.. @@ -123,6 +132,10 @@ CompressWhite = function (ts, packer) var cu = ts.cursor; if (!ts.balance("{") ){ + ts.dump(cu-40, cu+1); + print(">>>>>>>>>>>>>>>>>HERE>>>>>>>>>>>>"); + ts.dump(cu+1, cu+40); + throw "could not find end lbrace!!!"; } // if next is not ';' -> make it so... @@ -233,6 +246,7 @@ CompressWhite = function (ts, packer) out = ''; while (true) { var tok = ts.nextTok(); + if (!tok) { break; } @@ -252,7 +266,7 @@ CompressWhite = function (ts, packer) continue; } } - //f.write(tok.outData); + out += tok.outData !== false ? tok.outData : tok.data; if ((tok.outData == ';') && (out.length - outoff > 255)) {