X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=JSDOC%2FCompressWhite.js;h=996901f0b0dd0c554133915e14f9b746635d7dba;hb=bc57183956b9f1083834c373945eab778261a4c3;hp=0ca21b56fbdd5a641d6ae694d5f7881ef37d59bf;hpb=d4d643a108a46c1a797e391af896a5713da99631;p=gnome.introspection-doc-generator diff --git a/JSDOC/CompressWhite.js b/JSDOC/CompressWhite.js index 0ca21b5..996901f 100644 --- a/JSDOC/CompressWhite.js +++ b/JSDOC/CompressWhite.js @@ -73,6 +73,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 + print("()LF : " +ts.lookTok(1).toString(); + if (ts.lookTok(1).type == 'NAME' && ts.lookTok(1,true).name == "NEWLINE") { + ts.look(0).outData = ts.look(0).data+"\n"; + } + // restore.. + ts.cursor = cu; + continue; + } + + // function a () { ... }; /* if (ts.look(-1).isTypeN(Script.TOKfunction) && ts.look(1).isTypeN(Script.TOKlparen)) { @@ -216,7 +237,7 @@ CompressWhite = function (ts, packer) } - if (tok.type == "NAME" && tok.identifier && tok.identifier.mungedValue.length) { + if (tok.type == "NAME" && tok.identifier && tok.identifier.mungedValue && tok.identifier.mungedValue.length) { //f.write(tok.identifier.mungedValue); out += tok.identifier.mungedValue; continue;