This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / Lex / DoubleLiteral.java
diff --git a/Robust/src/Lex/DoubleLiteral.java b/Robust/src/Lex/DoubleLiteral.java
deleted file mode 100644 (file)
index 388c861..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-package Lex;
-
-import java_cup.runtime.Symbol;
-import Parse.Sym;
-
-class DoubleLiteral extends NumericLiteral {
-  DoubleLiteral(double d) { this.val = new Double(d); }
-
-  Symbol token() { return new Symbol(Sym.FLOATING_POINT_LITERAL, val); }
-}