Returns true if this is a POP_BLOCK pseudo instruction.
(&self)
| 1627 | |
| 1628 | /// Returns true if this is a POP_BLOCK pseudo instruction. |
| 1629 | pub fn is_pop_block(&self) -> bool { |
| 1630 | matches!(self, Self::Pseudo(PseudoInstruction::PopBlock)) |
| 1631 | } |
| 1632 | } |
| 1633 | |
| 1634 | /// What effect the instruction has on the stack. |
no outgoing calls
no test coverage detected