This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] /
1 package Lex;
2
3 import java_cup.runtime.Symbol;
4
5 class LongLiteral extends NumericLiteral {
6   LongLiteral(long l) { this.val = new Long(l); }
7
8   Symbol token() { return new Symbol(Sym.INTEGER_LITERAL, val); }
9 }