(locals: &mut Vec<FrameValue>, value: FrameValue)
| 1563 | } |
| 1564 | |
| 1565 | I::Ireturn | I::Lreturn | I::Freturn | I::Dreturn | I::Areturn => { |
| 1566 | state.pop(context, instruction_index)?; |
| 1567 | return Ok(Vec::new()); |
| 1568 | } |
| 1569 | I::Return => return Ok(Vec::new()), |
| 1570 | |
| 1571 | I::Getstatic(field_ref) => { |
| 1572 | let field_type = field_type_for_ref(constant_pool, *field_ref)?; |
| 1573 | state.stack.push(frame_value_from_field_type(&field_type)); |
| 1574 | } |
no test coverage detected