changes to build script to increase java heap memory
[IRC.git] / Robust / src / Lex / DoubleLiteral.java
1 package Lex;
2
3 import java_cup.runtime.Symbol;
4 import Parse.Sym;
5
6 class DoubleLiteral extends NumericLiteral {
7   DoubleLiteral(double d) { this.val = new Double(d); }
8
9   Symbol token() { return new Symbol(Sym.FLOATING_POINT_LITERAL, val); }
10 }