(self)
| 191 | self._specialized_instructions = specialized_instructions |
| 192 | |
| 193 | def get_opcode_names(self) -> KeysView[str]: |
| 194 | return self._data.keys() |
| 195 | |
| 196 | def get_pair_counts(self) -> dict[tuple[str, str], int]: |
| 197 | pair_counts = {} |
no test coverage detected