Deep-clone this exception table.
(&self, pool: &mut ValueListPool)
| 171 | |
| 172 | /// Deep-clone this exception table. |
| 173 | pub fn deep_clone(&self, pool: &mut ValueListPool) -> Self { |
| 174 | Self { |
| 175 | targets: self.targets.iter().map(|b| b.deep_clone(pool)).collect(), |
| 176 | items: self.items.clone(), |
| 177 | sig: self.sig, |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | /// Get the default target for the non-exceptional return case. |
| 182 | pub fn normal_return(&self) -> &BlockCall { |