| 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]); |
| 333 | } |
| 334 | void exportTag(std::string_view Name, uint32_t Idx) { |
| 335 | std::unique_lock Lock(Mutex); |
| 336 | ExpTags.insert_or_assign(std::string(Name), TagInsts[Idx]); |
no outgoing calls
no test coverage detected