(instruction: &Instruction)
| 1342 | 3, |
| 1343 | FrameValue::Double, |
| 1344 | context, |
| 1345 | instruction_index, |
| 1346 | )?, |
| 1347 | I::Astore_0 => store_reference_fixed(&mut state, 0, context, instruction_index)?, |
| 1348 | I::Astore_1 => store_reference_fixed(&mut state, 1, context, instruction_index)?, |
| 1349 | I::Astore_2 => store_reference_fixed(&mut state, 2, context, instruction_index)?, |
| 1350 | I::Astore_3 => store_reference_fixed(&mut state, 3, context, instruction_index)?, |
| 1351 | I::Istore_w(local) => store_fixed( |
| 1352 | &mut state, |
| 1353 | *local, |
| 1354 | FrameValue::Integer, |
| 1355 | context, |
| 1356 | instruction_index, |
| 1357 | )?, |
| 1358 | I::Lstore_w(local) => store_fixed( |
| 1359 | &mut state, |
| 1360 | *local, |
| 1361 | FrameValue::Long, |
| 1362 | context, |
| 1363 | instruction_index, |
| 1364 | )?, |
| 1365 | I::Fstore_w(local) => store_fixed( |
| 1366 | &mut state, |
| 1367 | *local, |
| 1368 | FrameValue::Float, |
| 1369 | context, |
no outgoing calls
no test coverage detected