eliminated Parser.Table.Top
[sbp.git] / src / edu / berkeley / sbp / Token.java
index 196f5ca..41ef3d1 100644 (file)
@@ -10,25 +10,19 @@ import edu.berkeley.sbp.*;
 /** a token of input -- note that this represents an <i>actual input token</i> rather than an <tt>Element</tt> which <i>matches</i> a token */
 public interface Token {
 
-    // FIXME!!! remove this
-    /** converts this <tt>Token</tt> into a standalone result (ie for a non-rewriting pattern) */
-    public String result();
-
     /** this is declared abstract as a way of forcing subclasses to provide a thoughtful implementation */
     public abstract String toString();
 
-    public abstract Location getLocation();
-
     /** a sequence of input tokens; returns null when EOF is reached */
     public static interface Stream<T extends Token> {
         public T next() throws IOException;
+        public abstract Location getLocation();
     }
 
     /** a location within the input stream */
     public static interface Location {
         public String toString();
-        public String getContext();
     }
-
 }
 
+