| 190 | return static_cast<uint32_t>(ExpTables.size()); |
| 191 | } |
| 192 | uint32_t getMemoryExportNum() const noexcept { |
| 193 | std::shared_lock Lock(Mutex); |
| 194 | return static_cast<uint32_t>(ExpMems.size()); |
| 195 | } |
| 196 | uint32_t getTagExportNum() const noexcept { |
| 197 | std::shared_lock Lock(Mutex); |
| 198 | return static_cast<uint32_t>(ExpTags.size()); |
no test coverage detected