| 239 | }; |
| 240 | |
| 241 | static godot::Callable createJSCallable(std::shared_ptr<RNWorklet::JsiWorkletContext> workletContext, jsi::Runtime &rt, jsi::Function func) { |
| 242 | return godot::Callable(memnew(JavascriptCallable(workletContext, rt, func))); |
| 243 | } |
| 244 | |
| 245 | class GodotHostObject : public jsi::HostObject { |
| 246 | std::shared_ptr<RNWorklet::JsiWorkletContext> _workletContext; |
no test coverage detected