(&self, utf8: &'static str)
| 113 | } |
| 114 | |
| 115 | pub fn get_utf8_index(&self, utf8: &'static str) -> usize { |
| 116 | self.find_ut8_index(utf8).unwrap_or(0) |
| 117 | } |
| 118 | |
| 119 | pub fn resolve_index(&self, idx: &ConstantPoolIndex) -> Option<&Constant> { |
| 120 | self.constants.get(idx.idx) |
no test coverage detected