Get the default target for the non-exceptional return case.
(&self)
| 180 | |
| 181 | /// Get the default target for the non-exceptional return case. |
| 182 | pub fn normal_return(&self) -> &BlockCall { |
| 183 | self.targets.last().unwrap() |
| 184 | } |
| 185 | |
| 186 | /// Get the default target for the non-exceptional return case. |
| 187 | pub fn normal_return_mut(&mut self) -> &mut BlockCall { |
no test coverage detected