This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / JavaGrammar / Lex / StringLiteral.java
diff --git a/Robust/JavaGrammar/Lex/StringLiteral.java b/Robust/JavaGrammar/Lex/StringLiteral.java
deleted file mode 100644 (file)
index cdf4e98..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-package Lex;
-
-import java_cup.runtime.Symbol;
-
-class StringLiteral extends Literal {
-  String val;
-  StringLiteral(String s) { this.val = s; }
-
-  Symbol token() { return new Symbol(Sym.STRING_LITERAL, val); }
-
-  public String toString() { 
-    return "StringLiteral <"+Token.escape(val)+">"; 
-  }
-}