JSDOC/CompressWhite.js
[gnome.introspection-doc-generator] / JSDOC / CompressWhite.js
index 55687ad..a510722 100644 (file)
@@ -71,13 +71,37 @@ CompressWhite =  function (ts, packer)
                 //println("got = function() ");
                 var cu = ts.cursor;
                 
-                ts.balance("(");
-                ts.balance("{");
+                 if (!ts.balance("(") ){
+                    ts.dump(cu-40, cu);
+                    print(">>>>>>>>>>>>>>>>>HERE>>>>>>>>>>>>");
+                    ts.dump(cu, cu+40);
+                    
+                    throw "could not find end lbrace!!!";
+                }
+                print("AFTER BALANCE "(");
+                ts.dump(cu, ts.cursor+2);
+                
+                 if (!ts.balance("{") ){
+                    ts.dump(cu-40, cu);
+                    print(">>>>>>>>>>>>>>>>>HERE>>>>>>>>>>>>");
+                    ts.dump(cu, cu+40);
+                    
+                    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.lookTok(1,true).name == "NEWLINE") {
+                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;
@@ -139,8 +163,7 @@ CompressWhite =  function (ts, packer)
                     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 +";";
                 }
@@ -151,37 +174,7 @@ CompressWhite =  function (ts, packer)
             
             // any more??
             // a = function(....) { } 
-              //    print(ts.lookTok(2).toString());
-            if (ts.lookTok(1).data == '=' &&  ts.lookTok(2).name == 'FUNCTION' ) {
-                // freeze time.. 
-                print("compress white : got a = function ");
-                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 (!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;
-            }
-            
+          
         }