got new tib tokenizer going
[sbp.git] / src / edu / berkeley / sbp / Token.java
index 41ef3d1..551ee6d 100644 (file)
@@ -15,11 +15,11 @@ public interface Token {
 
     /** a sequence of input tokens; returns null when EOF is reached */
     public static interface Stream<T extends Token> {
-        public T next() throws IOException;
+        public T next(int numstates) throws IOException;
         public abstract Location getLocation();
     }
 
-    /** a location within the input stream */
+    /** a location *between tokens* in the input stream */
     public static interface Location {
         public String toString();
     }