| 324 | ExpTables.insert_or_assign(std::string(Name), TabInsts[Idx]); |
| 325 | } |
| 326 | void exportMemory(std::string_view Name, uint32_t Idx) { |
| 327 | std::unique_lock Lock(Mutex); |
| 328 | ExpMems.insert_or_assign(std::string(Name), MemInsts[Idx]); |
| 329 | } |
| 330 | void exportGlobal(std::string_view Name, uint32_t Idx) { |
| 331 | std::unique_lock Lock(Mutex); |
| 332 | ExpGlobals.insert_or_assign(std::string(Name), GlobInsts[Idx]); |
no outgoing calls
no test coverage detected