()
| 17 | } |
| 18 | |
| 19 | func (e *Error) ptr() *C.wasmtime_error_t { |
| 20 | ret := e._ptr |
| 21 | if ret == nil { |
| 22 | panic("object has been closed already") |
| 23 | } |
| 24 | maybeGC() |
| 25 | return ret |
| 26 | } |
| 27 | |
| 28 | func (e *Error) Error() string { |
| 29 | message := C.wasm_byte_vec_t{} |
no test coverage detected