X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=JSDOC%2FCompressWhite.js;h=6b08e160400f68b030fe69802fdae95460a35f2f;hb=2a10119befba6ac7ea16a3df614a64078890158d;hp=d83bcb43367df973f6ec19df9702a20ff9b9176e;hpb=28dbf357387884ff7f3bead0b5256bd3a1368a6c;p=gnome.introspection-doc-generator diff --git a/JSDOC/CompressWhite.js b/JSDOC/CompressWhite.js index d83bcb4..6b08e16 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; @@ -73,11 +82,27 @@ CompressWhite = function (ts, packer) ts.cursor = cu; continue; } - + // next item is a name.. if ((ts.lookTok(1).type == 'NAME' || ts.lookTok(1).type == 'KEYW' ) && ts.look(1,true).name == "NEWLINE") { // preserve linebraek ts.look(0).outData = ts.look(0).data+"\n"; } + // method call followed by name.. + if (ts.lookTok(1).data == "(") { + var cu = ts.cursor; + + ts.balance("("); + // although this var a=function(){},v,c; causes + + if (ts.lookTok(1).type == 'NAME' && ts.look(1,true).name == "NEWLINE") { + + ts.look(0).outData = ts.look(0).data+"\n"; + } + // restore.. + ts.cursor = cu; + continue; + } + // function a () { ... }; /* @@ -217,6 +242,7 @@ CompressWhite = function (ts, packer) out = ''; while (true) { var tok = ts.nextTok(); + if (!tok) { break; } @@ -236,7 +262,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)) {