| 15 | |
| 16 | template <typename Type> |
| 17 | inline auto BindData(QuickJSRuntimeBridgeInterface::SinkFunc func, void* data) |
| 18 | { |
| 19 | return [func, data](Type* handle, const char* msg, const char* details) { |
| 20 | func(handle, msg, details, data); |
| 21 | }; |
| 22 | } |
| 23 | |
| 24 | struct QuickJSRuntimeData : public QuickJSRuntimeBridgeInterface |
| 25 | { |
nothing calls this directly
no outgoing calls
no test coverage detected