Returns true if the current frame is [ControlStackFrame::Loop].
(&self)
| 1058 | |
| 1059 | /// Returns true if the current frame is [ControlStackFrame::Loop]. |
| 1060 | pub fn is_loop(&self) -> bool { |
| 1061 | match self { |
| 1062 | Self::Loop { .. } => true, |
| 1063 | _ => false, |
| 1064 | } |
| 1065 | } |
| 1066 | |
| 1067 | /// Returns true if the current stack pointer is unbalanced |
| 1068 | /// relative to the the expected control frame stack pointer |