| 256 | } |
| 257 | |
| 258 | Expect<void> Executor::runTryTableOp(Runtime::StackManager &StackMgr, |
| 259 | const AST::Instruction &Instr, |
| 260 | AST::InstrView::iterator &PC) noexcept { |
| 261 | const auto &TryDesc = Instr.getTryCatch(); |
| 262 | StackMgr.pushHandler(PC, TryDesc.BlockParamNum, TryDesc.Catch); |
| 263 | return {}; |
| 264 | } |
| 265 | |
| 266 | } // namespace Executor |
| 267 | } // namespace WasmEdge |
nothing calls this directly
no test coverage detected