MCPcopy Index your code
hub / github.com/RustPython/RustPython / next_external_frame

Method next_external_frame

crates/vm/src/frame.rs:1077–1086  ·  view source on GitHub ↗
(&self, vm: &VirtualMachine)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

f_backMethod · 0.80
is_internal_frameMethod · 0.80

Tested by

no test coverage detected