Get current instantiated module instance.
| 259 | |
| 260 | /// Get current instantiated module instance. |
| 261 | const Runtime::Instance::ModuleInstance *getActiveModule() const { |
| 262 | std::shared_lock Lock(Mutex); |
| 263 | return unsafeGetActiveModule(); |
| 264 | } |
| 265 | |
| 266 | /// Getter for the store set in the VM. |
| 267 | Runtime::StoreManager &getStoreManager() noexcept { return StoreRef; } |
no outgoing calls