| 1 | package net.bluejekyll.wasmtime; |
| 2 | |
| 3 | public class WasmStore extends AbstractOpaquePtr { |
| 4 | // Store is !Send and !Sync in Rust, we will enforce that with a ThreadLocal |
| 5 | |
| 6 | WasmStore(long ptr) { |
| 7 | super(ptr, WasmStore::freeStore); |
| 8 | } |
| 9 | |
| 10 | private static native void freeStore(long ptr); |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…