JSDOC/TokenStream.vala
[gnome.introspection-doc-generator] / JSDOC / TokenStream.vala
index cf69819..a2bcaec 100644 (file)
@@ -81,16 +81,16 @@ namespace JSDOC {
                    
                }
                // look through token stream, including white space...
-               public Token? lookAny (int n)
+               public Token  lookAny (int n)
                {
 
 
-                        if (this.cursor+n < 0 || this.cursor+n > (this.tokens.size -1)) {
-                           return new Token("", "VOID", "START_OF_STREAM");
-                       }
-                       return this.tokens.get(this.cursor+n);
-                   }
-                   
+                if (this.cursor+n < 0 || this.cursor+n > (this.tokens.size -1)) {
+                   return new Token("", "VOID", "START_OF_STREAM");
+               }
+               return this.tokens.get(this.cursor+n);
+           
+           
   
                }
                
@@ -250,7 +250,7 @@ namespace JSDOC {
                    //Seed.print("STOP:" + stop);
                    Token token;
                    
-                   while (null != (token = this.look(1,false))) {
+                   while (null != (token = this.lookAny(1))) {
                                debug("BALANCE: %d %s " , this.cursor,  token.asString());
                        if (token.is(start)) {
                      //      Seed.print("balance: START : " + depth + " " + token.data);