break;
case Instruction.T_long:
push(new PushLong(parseLongValue(subToken)));
break;
case Instruction.T_float:
push(new PushFloat(
Float.parseFloat(removePrefixZerosAndUnderscores(subToken,
false))));
break;
case Instruction.T_double:
if (lastChar == 'D' || lastChar == 'd') {