if (type == context.getLong()) {
literal = new LongLiteral(this.getLongValue());
break;
}
if (type == context.getFloat()) {
literal = new FloatLiteral(this.getFloatValue());
break;
}
if (type == context.getDouble()) {
literal = new DoubleLiteral(this.getDoubleValue());
break;