JSDOC/CompressWhite.js
[gnome.introspection-doc-generator] / JSDOC / CompressWhite.js
index a047b5c..93eb9ab 100644 (file)
@@ -39,7 +39,7 @@ CompressWhite =  function (ts, packer)
                 ts.look(0).outData = ts.look(0).data+"\n";
             }
             // restore.. 
-            ts.cursor = cu;
+            
             continue;
         }
         // add semi-colon's where linebreaks are used... - not foolproof yet.!
@@ -132,10 +132,15 @@ CompressWhite =  function (ts, packer)
                 var cu = ts.cursor;
                 
                 if (!ts.balance("{") ){
+                    ts.dump(cu-40, cu);
+                    print(">>>>>>>>>>>>>>>>>HERE>>>>>>>>>>>>");
+                    ts.dump(cu, cu+40);
+                    
                     throw "could not find end lbrace!!!";
                 }
                 // if next is not ';' -> make it so...
-
+                print(ts.lookTok(1).toString());
+                print(ts.lookTok(1,true).toString());
                 if (ts.lookTok(1).data != ';' && ts.lookTok(1).data != '}' && ts.look(1,true).name=="NEWLINE") {
                     ts.look(0).outData = ts.look(0).data +";";
                 }
@@ -145,6 +150,32 @@ CompressWhite =  function (ts, packer)
             }
             
             // any more??
+            // a = function(....) { } 
+                
+            if (ts.lookTok(1).data == '=' &&  ts.lookTok(2).is('FUNCTION') ) {
+                // freeze time.. 
+                //println("----------*** 3 *** --------------");
+                var cu = ts.cursor;
+                ts.balance("(");
+                
+                if (!ts.balance("{") ){
+                    ts.dump(cu-40, cu);
+                    print(">>>>>>>>>>>>>>>>>HERE>>>>>>>>>>>>");
+                    ts.dump(cu, cu+40);
+                    
+                    throw "could not find end lbrace!!!";
+                }
+                // if next is not ';' -> make it so...
+                print(ts.lookTok(1).toString());
+                print(ts.lookTok(1,true).toString());
+                if (ts.lookTok(1).data != ';' && ts.lookTok(1).data != '}' && ts.look(1,true).name=="NEWLINE") {
+                    ts.look(0).outData = ts.look(0).data +";";
+                }
+                // restore.. 
+                ts.cursor = cu;
+                continue;
+            }
+            
         }