Data returns arbitrary data attached to [Store] via [NewStoreWithData]. If [Store] was created with [NewStore], this function returns nil.
()
| 137 | // Data returns arbitrary data attached to [Store] via [NewStoreWithData]. |
| 138 | // If [Store] was created with [NewStore], this function returns nil. |
| 139 | func (store *Store) Data() interface{} { |
| 140 | return getDataInStore(store).data |
| 141 | } |
| 142 | |
| 143 | // SetEpochDeadline will configure the relative deadline, from the current |
| 144 | // engine's epoch number, after which wasm code will be interrupted. |
nothing calls this directly
no test coverage detected