This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / Lex / Identifier.java
diff --git a/Robust/src/Lex/Identifier.java b/Robust/src/Lex/Identifier.java
deleted file mode 100644 (file)
index f3c787a..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-package Lex;
-
-import java_cup.runtime.Symbol;
-import Parse.Sym;
-
-public class Identifier extends Token {
-  String identifier;
-  public Identifier(String identifier) {
-    this.identifier=identifier;
-  }
-
-  public String toString() {
-    return "Identifier <"+identifier+">";
-  }
-
-  /* Ben Walter <bwalter@mit.edu> correctly pointed out that
-   * the first released version of this grammar/lexer did not
-   * return the string value of the identifier in the parser token.
-   * Should be fixed now. ;-) <cananian@alumni.princeton.edu>
-   */
-  Symbol token() {
-    return new Symbol(Sym.IDENTIFIER, identifier);
-  }
-}