Get the exception table, if any, associated with this instruction.
(&self)
| 648 | |
| 649 | /// Get the exception table, if any, associated with this instruction. |
| 650 | pub fn exception_table(&self) -> Option<ExceptionTable> { |
| 651 | match self { |
| 652 | Self::TryCall { exception, .. } | Self::TryCallIndirect { exception, .. } => { |
| 653 | Some(*exception) |
| 654 | } |
| 655 | _ => None, |
| 656 | } |
| 657 | } |
| 658 | } |
| 659 | |
| 660 | /// Information about call instructions. |
no outgoing calls
no test coverage detected