()
| 152 | } |
| 153 | |
| 154 | func (f *Frame) ptr() *C.wasm_frame_t { |
| 155 | ret := f._ptr |
| 156 | if ret == nil { |
| 157 | panic("object has been closed already") |
| 158 | } |
| 159 | maybeGC() |
| 160 | return ret |
| 161 | } |
| 162 | |
| 163 | // FuncIndex returns the function index in the wasm module that this frame represents |
| 164 | func (f *Frame) FuncIndex() uint32 { |
no test coverage detected