(value: Option<&str>)
| 58 | Constant::Double(value) => Self::Double(value.to_bits()), |
| 59 | Constant::Class(index) => Self::Class(*index), |
| 60 | Constant::String(index) => Self::String(*index), |
| 61 | Constant::FieldRef { |
| 62 | class_index, |
| 63 | name_and_type_index, |
| 64 | } => Self::FieldRef(*class_index, *name_and_type_index), |
| 65 | Constant::MethodRef { |