X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=Robust%2FJavaGrammar%2FLex%2FBooleanLiteral.java;fp=Robust%2FJavaGrammar%2FLex%2FBooleanLiteral.java;h=0000000000000000000000000000000000000000;hb=cdcf09c40af1419fa42932aae249cb79b69b5daf;hp=9ff274f26a8d87c3ad42628ed8dc61a72950f059;hpb=b9df1caacff3dbe5959bc12e0e6ba46500fcd3e2;p=IRC.git diff --git a/Robust/JavaGrammar/Lex/BooleanLiteral.java b/Robust/JavaGrammar/Lex/BooleanLiteral.java deleted file mode 100644 index 9ff274f2..00000000 --- a/Robust/JavaGrammar/Lex/BooleanLiteral.java +++ /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()+">"; } -}