(_opcode: i32)
| 142 | /// Check if instruction has exception info |
| 143 | #[must_use] |
| 144 | pub fn has_exc(_opcode: i32) -> bool { |
| 145 | // No instructions have exception info in RustPython |
| 146 | // (exception handling is done via exception table) |
| 147 | false |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | // prepare specialization |