Normalize smaller ints → I32
(ty: &Type)
| 377 | 3 => Instruction::Astore_3, |
| 378 | _ => unreachable!(), |
| 379 | } |
| 380 | } else if index <= u8::MAX as u16 { |
| 381 | Instruction::Astore(index as u8) |
| 382 | } else { |
| 383 | Instruction::Astore_w(index) |
| 384 | } |
| 385 | } |
| 386 | Unit | Void => { |
| 387 | return Err(jvm::Error::VerificationError { |
no outgoing calls
no test coverage detected