int index = destinationPool.optionalAddClassRef(ci.getName());
copyParams.addValue(index);
break;
}
case TYPE_CONSTANT_POOL_CONSTANT: {
ConstantPoolInfo cpi = sourcePool.get(params.getInt(i));
switch (cpi.getType()) {
case ConstantPoolInfo.DOUBLE: {
DoubleInfo di = (DoubleInfo)cpi;
DoubleInfo diCopy = new DoubleInfo(di.getHighBytes(), di.getLowBytes(), destinationPool);
int index = destinationPool.optionalAdd(diCopy);
copyParams.addValue(index);