X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=JSDOC%2FCompressWhite.js;h=5f918b88998f8b1219cdbf9abde07245febaa9e7;hb=385b96ac83744f5560ec0ea4ac959a6a5e4fef97;hp=f40eacbc4c9604fb8adc21e06644703348cd5105;hpb=a4045c6138dc83a4bcb0577da3a0dba7b773208b;p=gnome.introspection-doc-generator diff --git a/JSDOC/CompressWhite.js b/JSDOC/CompressWhite.js index f40eacb..5f918b8 100644 --- a/JSDOC/CompressWhite.js +++ b/JSDOC/CompressWhite.js @@ -73,11 +73,24 @@ CompressWhite = function (ts, packer) ts.cursor = cu; continue; } - - if (ts.lookTok(1).type == 'NAME' && ts.look(1,true).name == "NEWLINE") { - // presever linebraek + // 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 (tok.lookTok(1).data == "(") { + var cu = ts.cursor; + + ts.balance("("); + // although this var a=function(){},v,c; causes + 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; + } + // function a () { ... }; /*