(self, opcode: str)
| 242 | return self._get_pred_succ()[1][opcode] |
| 243 | |
| 244 | def _get_stats_for_opcode(self, opcode: str) -> dict[str, int]: |
| 245 | return self._data[opcode] |
| 246 | |
| 247 | def get_specialization_total(self, opcode: str) -> int: |
| 248 | family_stats = self._get_stats_for_opcode(opcode) |
no outgoing calls
no test coverage detected