()
| 65 | } |
| 66 | |
| 67 | func (engine *Engine) ptr() *C.wasm_engine_t { |
| 68 | ret := engine._ptr |
| 69 | if ret == nil { |
| 70 | panic("object has been closed already") |
| 71 | } |
| 72 | maybeGC() |
| 73 | return ret |
| 74 | } |
| 75 | |
| 76 | // IncrementEpoch will increase the current epoch number by 1 within the |
| 77 | // current engine which will cause any connected stores with their epoch |
no test coverage detected