| 22 | } |
| 23 | |
| 24 | void NativeDataRefTest::sendData(const CppType& self, const em::val& w_data) { |
| 25 | try { |
| 26 | self->sendData(::djinni::NativeDataRef::toCpp(w_data)); |
| 27 | } |
| 28 | catch(const std::exception& e) { |
| 29 | return ::djinni::ExceptionHandlingTraits<void>::handleNativeException(e); |
| 30 | } |
| 31 | } |
| 32 | em::val NativeDataRefTest::retriveAsBin(const CppType& self) { |
| 33 | try { |
| 34 | auto r = self->retriveAsBin(); |
nothing calls this directly
no outgoing calls
no test coverage detected