| 532 | } |
| 533 | |
| 534 | jlong nativeGetLong(jlong ptr, jint index) { |
| 535 | auto* marshaller = unwrap(nullptr, ptr); |
| 536 | if (marshaller == nullptr) { |
| 537 | return 0; |
| 538 | } |
| 539 | |
| 540 | return static_cast<jlong>(marshaller->getOrUndefined(static_cast<int>(index)).toLong()); |
| 541 | } |
| 542 | |
| 543 | jobject nativeGetUntyped(JNIEnv* env, |
| 544 |
no test coverage detected