| 378 | } |
| 379 | |
| 380 | djinni::LocalRef<jobject> newJavaBooleanObject(bool value) { |
| 381 | auto& cache = JavaCache::get(); |
| 382 | return cache.getBooleanClass().newObject(cache.getBooleanConstructorMethod(), value); |
| 383 | } |
| 384 | |
| 385 | djinni::LocalRef<jobject> newJavaFloatObject(float value) { |
| 386 | auto& cache = JavaCache::get(); |
no test coverage detected