(&mut self, pair: &ElementValuePair, cp: &ConstantPool)
| 315 | } |
| 316 | |
| 317 | fn write_element_value_pair(&mut self, pair: &ElementValuePair, cp: &ConstantPool) -> Result<usize, Error> { |
| 318 | self.write_u16(pair.element_name_index.idx as u16).and(self.write_element_value(&pair.value, cp)) |
| 319 | } |
| 320 | |
| 321 | fn write_annotation(&mut self, annotation: &Annotation, cp: &ConstantPool) -> Result<usize, Error> { |
| 322 | // type_index |
no test coverage detected