JSDOC/CompressWhite.js
[gnome.introspection-doc-generator] / JSDOC / CompressWhite.js
index 2250ae3..a79372e 100644 (file)
@@ -85,13 +85,16 @@ CompressWhite =  function (ts, packer)
                     
                     throw "could not find end lbrace!!!";
                 }
+                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();
                 }
                 // restore.. 
                 ts.cursor = cu;