(self, opcode: str)
| 319 | } |
| 320 | |
| 321 | def is_specializable(self, opcode: str) -> bool: |
| 322 | return "specializable" in self._get_stats_for_opcode(opcode) |
| 323 | |
| 324 | def get_specialized_total_counts(self) -> tuple[int, int, int]: |
| 325 | basic = 0 |
no test coverage detected