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