if (type == context.getShort()) {
literal = new ShortLiteral(this.getShortValue());
break;
}
if (type == context.getInt()) {
literal = new IntLiteral(this.getIntValue());
break;
}
if (type == context.getLong()) {
literal = new LongLiteral(this.getLongValue());
break;