case READ_METHOD: case TRY_READ_METHOD: default: {
b.loadLocal(beanVar);
b.invoke(bp.getReadMethod());
TypeDesc type = TypeDesc.forClass(bp.getType());
b.convert(type, type.toObjectType());
b.returnValue(TypeDesc.OBJECT);
break;
}
case WRITE_METHOD: case TRY_WRITE_METHOD: {
b.loadLocal(beanVar);
b.loadLocal(valueVar);