| 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()); |
| 199 | } |
| 200 | uint32_t getGlobalExportNum() const noexcept { |
| 201 | std::shared_lock Lock(Mutex); |
| 202 | return static_cast<uint32_t>(ExpGlobals.size()); |
no test coverage detected