()
| 26 | } |
| 27 | |
| 28 | func (l *Linker) ptr() *C.wasmtime_linker_t { |
| 29 | ret := l._ptr |
| 30 | if ret == nil { |
| 31 | panic("object has been closed already") |
| 32 | } |
| 33 | maybeGC() |
| 34 | return ret |
| 35 | } |
| 36 | |
| 37 | // Close will deallocate this linker's state explicitly. |
| 38 | // |
no test coverage detected