| 42 | } |
| 43 | |
| 44 | void JavaScriptWorker::postInit() { |
| 45 | _runtime->dispatchOnJsThread( |
| 46 | nullptr, JavaScriptTaskScheduleTypeDefault, 0, [self = strongSmallRef(this)](JavaScriptEntryParameters& entry) { |
| 47 | self->doPostInit(); |
| 48 | }); |
| 49 | } |
| 50 | |
| 51 | void JavaScriptWorker::setHostOnMessage(const Ref<ValueFunction>& func) { |
| 52 | _runtime->dispatchOnJsThread( |
nothing calls this directly
no test coverage detected