FuncOffset returns offset of this frame's instruction into the original function
()
| 200 | |
| 201 | // FuncOffset returns offset of this frame's instruction into the original function |
| 202 | func (f *Frame) FuncOffset() uint { |
| 203 | ret := uint(C.wasm_frame_func_offset(f.ptr())) |
| 204 | runtime.KeepAlive(f) |
| 205 | return ret |
| 206 | } |