(instr: &AnyInstruction)
| 2319 | } |
| 2320 | |
| 2321 | fn is_conditional_jump(instr: &AnyInstruction) -> bool { |
| 2322 | matches!( |
| 2323 | instr.real(), |
| 2324 | Some( |
| 2325 | Instruction::PopJumpIfFalse { .. } |
| 2326 | | Instruction::PopJumpIfTrue { .. } |
| 2327 | | Instruction::PopJumpIfNone { .. } |
| 2328 | | Instruction::PopJumpIfNotNone { .. } |
| 2329 | ) |
| 2330 | ) |
| 2331 | } |
| 2332 | |
| 2333 | /// Invert a conditional jump opcode. |
| 2334 | fn reversed_conditional(instr: &AnyInstruction) -> Option<AnyInstruction> { |
no outgoing calls
no test coverage detected