| 388 | } |
| 389 | |
| 390 | djinni::LocalRef<jobject> newJavaDoubleObject(double value) { |
| 391 | auto& cache = JavaCache::get(); |
| 392 | return cache.getDoubleClass().newObject(cache.getDoubleConstructorMethod(), value); |
| 393 | } |
| 394 | |
| 395 | djinni::LocalRef<jobject> newJavaIntObject(int32_t value) { |
| 396 | auto& cache = JavaCache::get(); |
no test coverage detected