This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / Lex / IntegerLiteral.java
diff --git a/Robust/src/Lex/IntegerLiteral.java b/Robust/src/Lex/IntegerLiteral.java
deleted file mode 100644 (file)
index 9ad2bb5..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-package Lex;
-
-import java_cup.runtime.Symbol;
-import Parse.Sym;
-
-class IntegerLiteral extends NumericLiteral {
-  IntegerLiteral(int i) {
-    this.val = new Integer(i);
-  }
-
-  Symbol token() {
-    return new Symbol(Sym.INTEGER_LITERAL, val);
-  }
-}