Returns the descriptive message associated with this trap.
| 122 | |
| 123 | /// Returns the descriptive message associated with this trap. |
| 124 | std::string message() const { |
| 125 | wasm_byte_vec_t msg; |
| 126 | wasm_trap_message(ptr.get(), &msg); |
| 127 | std::string ret(msg.data, msg.size - 1); |
| 128 | wasm_byte_vec_delete(&msg); |
| 129 | return ret; |
| 130 | } |
| 131 | |
| 132 | /// Returns the trace of WebAssembly frames associated with this trap. |
| 133 | /// |