This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / Lex / BooleanLiteral.java
diff --git a/Robust/src/Lex/BooleanLiteral.java b/Robust/src/Lex/BooleanLiteral.java
deleted file mode 100644 (file)
index 2bda29c..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-package Lex;
-
-import java_cup.runtime.Symbol;
-import Parse.Sym;
-
-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()+">";
-  }
-}