Stack: ... -> ..., value
421422423424425426427428429430431
break; } } else if (i < Byte.MAX_VALUE) { result = new BIPUSH((byte)i); } else if (i < Short.MAX_VALUE) { result = new SIPUSH((short)i); }
799800801802803804805
@SuppressWarnings("unused") // Called using reflection private Instruction createInstructionBipush(Element inst) { byte val= (byte) Integer.parseInt(inst.getAttributeValue("value")); return new BIPUSH(val); }