(&mut self)
| 152 | } |
| 153 | |
| 154 | fn read_string_reference_constant(&mut self) -> Result<ConstantPoolEntry> { |
| 155 | let string_index = self.buffer.read_u16()?; |
| 156 | Ok(ConstantPoolEntry::StringReference(string_index)) |
| 157 | } |
| 158 | |
| 159 | fn read_method_reference_constant(&mut self) -> Result<ConstantPoolEntry> { |
| 160 | let class_reference = self.buffer.read_u16()?; |
no test coverage detected