Method
exec_from
(&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> { |
Tested by
no test coverage detected