X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=Robust%2FJavaGrammar%2FParse%2FLexer.java;fp=Robust%2FJavaGrammar%2FParse%2FLexer.java;h=0000000000000000000000000000000000000000;hb=cdcf09c40af1419fa42932aae249cb79b69b5daf;hp=7fbcbd5f540783d8e57ab50d696265980cef7081;hpb=84e434cf05530d0b929a849e5c54da93d595381a;p=IRC.git diff --git a/Robust/JavaGrammar/Parse/Lexer.java b/Robust/JavaGrammar/Parse/Lexer.java deleted file mode 100644 index 7fbcbd5f..00000000 --- a/Robust/JavaGrammar/Parse/Lexer.java +++ /dev/null @@ -1,13 +0,0 @@ -package Parse; - -/* Lexer.java. Copyright (C) 1998 C. Scott Ananian. - * This program is free software; see the file COPYING for more details. - */ - -public interface Lexer { - public java_cup.runtime.Symbol nextToken() throws java.io.IOException; - /** report an error */ - public void errorMsg(String msg, java_cup.runtime.Symbol info); - /** return the number of errors reported */ - public int numErrors(); -}