(instruction_index: usize, offset: i32)
| 1381 | } |
| 1382 | |
| 1383 | I::Iaload | I::Baload | I::Caload | I::Saload => { |
| 1384 | state.pop(context, instruction_index)?; |
| 1385 | state.pop_reference(context, instruction_index)?; |
| 1386 | state.stack.push(FrameValue::Integer); |
| 1387 | } |
| 1388 | I::Laload => array_load(&mut state, FrameValue::Long, context, instruction_index)?, |
| 1389 | I::Faload => array_load(&mut state, FrameValue::Float, context, instruction_index)?, |
no outgoing calls
no test coverage detected