yay, new boolean resolution approach works
[sbp.git] / src / edu / berkeley / sbp / Token.java
index 551ee6d..1014a55 100644 (file)
@@ -15,7 +15,7 @@ public interface Token {
 
     /** a sequence of input tokens; returns null when EOF is reached */
     public static interface Stream<T extends Token> {
-        public T next(int numstates) throws IOException;
+        public T next(int numstates, int resets, int waits) throws IOException;
         public abstract Location getLocation();
     }