if (type == context.getByte()) {
literal = new ByteLiteral(this.getByteValue());
break;
}
if (type == context.getShort()) {
literal = new ShortLiteral(this.getShortValue());
break;
}
if (type == context.getInt()) {
literal = new IntLiteral(this.getIntValue());
break;