| 39 | } |
| 40 | } |
| 41 | void NativeDataRefTest::sendMutableData(const CppType& self, const em::val& w_data) { |
| 42 | try { |
| 43 | self->sendMutableData(::djinni::NativeDataRef::toCpp(w_data)); |
| 44 | } |
| 45 | catch(const std::exception& e) { |
| 46 | return ::djinni::ExceptionHandlingTraits<void>::handleNativeException(e); |
| 47 | } |
| 48 | } |
| 49 | em::val NativeDataRefTest::generateData(const CppType& self) { |
| 50 | try { |
| 51 | auto r = self->generateData(); |
nothing calls this directly
no outgoing calls
no test coverage detected