Unsafe getter of module address.
| 208 | |
| 209 | /// Unsafe getter of module address. |
| 210 | const Instance::ModuleInstance *getModule() const noexcept { |
| 211 | if (unlikely(FrameStack.empty())) { |
| 212 | return nullptr; |
| 213 | } |
| 214 | return FrameStack.back().Module; |
| 215 | } |
| 216 | |
| 217 | /// Reset stack. |
| 218 | void reset() noexcept { |
no test coverage detected