(&self, index: u16)
| 220 | } |
| 221 | |
| 222 | fn read_string_reference(&self, index: u16) -> Result<String> { |
| 223 | Self::read_string_reference_from(&self.class_file.constants, index) |
| 224 | } |
| 225 | |
| 226 | fn read_string_reference_from(constants_pool: &ConstantPool, index: u16) -> Result<String> { |
| 227 | constants_pool.text_of(index).map_err(|err| err.into()) |
no outgoing calls
no test coverage detected