MCPcopy Create free account
hub / github.com/dylan-sutton-chavez/edge-python / exec_from

Method exec_from

compiler/src/modules/vm/dispatch.rs:259–262  ·  view source on GitHub ↗
(&mut self, chunk: &SSAChunk, slots: &mut [Val], start_ip: usize)

Source from the content-addressed store, hash-verified

257 }
258
259 pub(crate) fn exec_from(&mut self, chunk: &SSAChunk, slots: &mut [Val], start_ip: usize) -> Result<Val, VmErr> {
260 self.resume_ip = start_ip;
261 self.exec(chunk, slots)
262 }
263
264 /* Resolve the receiver's method and call directly; args come from CallMethodArgs. */
265 fn exec_call_method(&mut self, attr_idx: u16, call_op: u16, chunk: &SSAChunk, slots: &mut [Val]) -> Result<(), VmErr> {

Callers 1

resume_coroutineMethod · 0.80

Calls 1

execMethod · 0.80

Tested by

no test coverage detected