Returns the next code index
(&mut self)
| 202 | |
| 203 | /// Returns the next code index |
| 204 | pub fn next_code_index(&mut self) -> u64 { |
| 205 | let code_index = self.code_index; |
| 206 | self.code_index += 1; |
| 207 | code_index |
| 208 | } |
| 209 | |
| 210 | /// Helper function to write `bytes` to the jitdump file. |
| 211 | /// |
no outgoing calls
no test coverage detected