| 81 | } |
| 82 | |
| 83 | Expect<void> Executor::runRefIsNullOp(ValVariant &Val) const noexcept { |
| 84 | Val.emplace<uint32_t>(Val.get<RefVariant>().isNull() ? 1U : 0U); |
| 85 | return {}; |
| 86 | } |
| 87 | |
| 88 | Expect<void> Executor::runRefFuncOp(Runtime::StackManager &StackMgr, |
| 89 | uint32_t Idx) const noexcept { |