| 9 | namespace callstack::polygen { |
| 10 | |
| 11 | TrapError::TrapError(wasm_rt_trap_t type): std::runtime_error(wasm_rt_strerror(type)), type(type) {} |
| 12 | |
| 13 | void polygen_trap_handler(wasm_rt_trap_t trap) { |
| 14 | throw TrapError(trap); |
nothing calls this directly
no test coverage detected