| 16 | } |
| 17 | |
| 18 | void NativeSortItems::sort(const CppType& self, int32_t w_order,const em::val& w_items) { |
| 19 | try { |
| 20 | self->sort(::djinni_generated::NativeSortOrder::toCpp(w_order), |
| 21 | ::djinni_generated::NativeItemList::toCpp(w_items)); |
| 22 | } |
| 23 | catch(const std::exception& e) { |
| 24 | return ::djinni::ExceptionHandlingTraits<void>::handleNativeException(e); |
| 25 | } |
| 26 | } |
| 27 | em::val NativeSortItems::create_with_listener(const em::val& w_listener) { |
| 28 | try { |
| 29 | auto r = ::textsort::SortItems::create_with_listener(::djinni_generated::NativeTextboxListener::toCpp(w_listener)); |
nothing calls this directly
no outgoing calls
no test coverage detected