(self)
| 134 | } |
| 135 | |
| 136 | pub const fn interp(self) -> Option<InterpKind> { |
| 137 | match self { |
| 138 | FrameKind::Regular(x) => Some(x), |
| 139 | FrameKind::Error(x) => Some(x), |
| 140 | _ => None, |
| 141 | } |
| 142 | } |
| 143 | } |
| 144 | |
| 145 | /// Entry in the frame list (additionally stores frame kind). |
no outgoing calls
no test coverage detected