| 237 | } |
| 238 | |
| 239 | WasmResult ContextBase::enqueueSharedQueue(uint32_t token, std::string_view value) { |
| 240 | return getGlobalSharedQueue().enqueue(token, value); |
| 241 | } |
| 242 | void ContextBase::destroy() { |
| 243 | if (destroyed_) { |
| 244 | return; |
no test coverage detected