JSDOC/CompressWhite.vala
[gnome.introspection-doc-generator] / JSDOC / CompressWhite.vala
index 543b167..79952e2 100644 (file)
@@ -78,15 +78,14 @@ namespace JSDOC
                                //println("got = function() ");
                                tok = ts.nextTok();
                                tok = ts.nextTok();
-                               tok = ts.nextTok();
+                               
                                //tok = ts.next();
                                 var cu = ts.cursor;
-                                       print("CUR: %s\n", ts.lookTok(0).asString());
-                                       print("NEXT = should be brace: %s\n", ts.lookTok(1).asString());
-                                        
+                                       print("NEXT = should be brac: %s\n", ts.lookTok(1).asString());
+                                         
                               
                                  
-                               if (tok.data != "(" || ts.balance("(").size < 1 ){
+                               if (ts.lookTok(1).data != "(" || ts.balance("(").size < 1 ){
                                        print("balance ( issue on line %d\n", ts.toArray().get(cu).line);
                                    ts.dump(cu-40, cu+2);
                                    print(">>>>>>>>>>>>>>>>>HERE>>>>>>>>>>>>");
@@ -94,8 +93,10 @@ namespace JSDOC
                                    
                                    throw new CompressWhiteError.BRACE( "could not find end lbrace!!!" );
                                }
-                               tok = ts.lookTok(0);
-                               
+                               print("CUR = should be ): %s\n", ts.lookTok(0).asString());
+
+                               tok = ts.nextTok();
+                               print("CUR = should be {: %s\n", ts.lookTok(0).asString());                             
                                cu = ts.cursor; // set the cursor to here.. so the next bit of the code will check inside the method.
                                
                                //print("AFTER BALANCE (");