(_env: &JNIEnv<'j>, jarray: jbyteArray)
| 217 | |
| 218 | impl<'j> WasmVal<'j> { |
| 219 | fn from_byte_array(_env: &JNIEnv<'j>, jarray: jbyteArray) -> Self { |
| 220 | WasmVal::ByteArray { |
| 221 | jarray, |
| 222 | lifetime: PhantomData, |
| 223 | } |
| 224 | } |
| 225 | |
| 226 | pub fn ty(&self) -> WasmTy { |
| 227 | match self { |
nothing calls this directly
no outgoing calls
no test coverage detected