(&self, vm: &VirtualMachine)
| 1075 | } |
| 1076 | |
| 1077 | pub fn next_external_frame(&self, vm: &VirtualMachine) -> Option<FrameRef> { |
| 1078 | let mut frame = self.f_back(vm); |
| 1079 | while let Some(ref f) = frame { |
| 1080 | if !f.is_internal_frame() { |
| 1081 | break; |
| 1082 | } |
| 1083 | frame = f.f_back(vm); |
| 1084 | } |
| 1085 | frame |
| 1086 | } |
| 1087 | } |
| 1088 | |
| 1089 | /// An executing frame; borrows mutable frame-internal data for the duration |
nothing calls this directly
no test coverage detected