Returns the index of the [`ControlStackFrame`] for the given depth.
(depth: u32, control_length: usize)
| 2556 | /// Returns the index of the [`ControlStackFrame`] for the given |
| 2557 | /// depth. |
| 2558 | pub fn control_index(depth: u32, control_length: usize) -> Result<usize> { |
| 2559 | (control_length - 1) |
| 2560 | .checked_sub(depth as usize) |
| 2561 | .ok_or_else(|| format_err!(CodeGenError::control_frame_expected())) |
| 2562 | } |
no test coverage detected