()
| 106 | } |
| 107 | |
| 108 | func (store *Store) ptr() *C.wasmtime_store_t { |
| 109 | ret := store._ptr |
| 110 | if ret == nil { |
| 111 | panic("object has been closed already") |
| 112 | } |
| 113 | maybeGC() |
| 114 | return ret |
| 115 | } |
| 116 | |
| 117 | // Close will deallocate this store's state explicitly. |
| 118 | // |
no test coverage detected