()
| 39 | } |
| 40 | |
| 41 | func (ty *ExportType) ptr() *C.wasm_exporttype_t { |
| 42 | ret := ty._ptr |
| 43 | if ret == nil { |
| 44 | panic("object has been closed already") |
| 45 | } |
| 46 | maybeGC() |
| 47 | return ret |
| 48 | } |
| 49 | |
| 50 | func (ty *ExportType) owner() interface{} { |
| 51 | if ty._owner != nil { |
no test coverage detected