| 50 | } |
| 51 | |
| 52 | void MainThreadManager::dispatch(const Ref<Context>& context, DispatchFunction function) { |
| 53 | doDispatch(context, std::move(function), false); |
| 54 | } |
| 55 | |
| 56 | void MainThreadManager::dispatchSync(const Ref<Context>& context, DispatchFunction function) { |
| 57 | doDispatch(context, std::move(function), true); |
no outgoing calls
no test coverage detected