(&mut self, context: &str, instruction_index: usize)
| 55 | | FrameValue::Uninitialized(_) |
| 56 | ) |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | impl FrameState { |
| 61 | fn new(initial_locals: Vec<FrameValue>, max_locals: usize) -> Self { |
| 62 | let mut locals = initial_locals; |
| 63 | locals.resize(max_locals, FrameValue::Top); |
| 64 | Self { |
| 65 | locals: Arc::new(locals), |
| 66 | stack: Vec::new(), |
| 67 | } |
no test coverage detected