}
case Const.CHECKCAST:
{
CastExpression cast= new CastExpression();
int index= bytes.readUnsignedShort();
ConstantClass c= (ConstantClass) constantPool.getConstant(index);
ObjectType type= new ObjectType(c.getBytes(constantPool).replace('/', '.'));
cast.setTypeBinding(type);
cast.setExpression(stack.pop());
instruction= cast;
break;
}
case Const.INSTANCEOF: