(stats: Stats)
| 1258 | return calc |
| 1259 | |
| 1260 | def calc_unsupported_opcodes_table(stats: Stats) -> Rows: |
| 1261 | unsupported_opcodes = stats.get_opcode_stats("unsupported_opcode") |
| 1262 | return sorted( |
| 1263 | [ |
| 1264 | (opcode, Count(count)) |
| 1265 | for opcode, count in unsupported_opcodes.get_opcode_counts().items() |
| 1266 | ], |
| 1267 | key=itemgetter(1), |
| 1268 | reverse=True, |
| 1269 | ) |
| 1270 | |
| 1271 | def calc_error_in_opcodes_table(stats: Stats) -> Rows: |
| 1272 | error_in_opcodes = stats.get_opcode_stats("error_in_opcode") |
nothing calls this directly
no test coverage detected
searching dependent graphs…