| 1 | package net.bluejekyll.wasmtime; |
| 2 | |
| 3 | public class WasmModule extends AbstractOpaquePtr { |
| 4 | WasmModule(long ptr) { |
| 5 | super(ptr, WasmModule::freeModule); |
| 6 | } |
| 7 | |
| 8 | private static native void freeModule(long ptr); |
| 9 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…