| 230 | } |
| 231 | |
| 232 | Expect<RefVariant> Executor::proxyRefFunc(Runtime::StackManager &StackMgr, |
| 233 | const uint32_t FuncIdx) noexcept { |
| 234 | auto *FuncInst = getFuncInstByIdx(StackMgr, FuncIdx); |
| 235 | assuming(FuncInst); |
| 236 | return RefVariant(FuncInst->getDefType(), FuncInst); |
| 237 | } |
| 238 | |
| 239 | Expect<RefVariant> Executor::proxyStructNew(Runtime::StackManager &StackMgr, |
| 240 | const uint32_t TypeIdx, |
nothing calls this directly
no test coverage detected