X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=JSDOC%2FCompressWhite.js;h=013c09c2f1c17a507784b10e5cece6ced3de0b72;hb=06383fbd7251bf58c4fd11ba48916edeed384d0f;hp=b02c3f20d9fd6bfd7fb4fdd7fe27e423a93611aa;hpb=c173e001ded218a0416d8f97c484dddc03feccce;p=gnome.introspection-doc-generator diff --git a/JSDOC/CompressWhite.js b/JSDOC/CompressWhite.js index b02c3f2..013c09c 100644 --- a/JSDOC/CompressWhite.js +++ b/JSDOC/CompressWhite.js @@ -85,14 +85,20 @@ CompressWhite = function (ts, packer) throw "could not find end lbrace!!!"; } - print(ts.lookTok(1).toString()); - print(ts.look(1,true).toString()); + 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.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;