()
| 76 | } |
| 77 | |
| 78 | public void free() { |
| 79 | if (!this.freed) { |
| 80 | LibExtism.INSTANCE.extism_function_free(this.pointer); |
| 81 | this.freed = true; |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | static class Callback<T> implements LibExtism.InternalExtismFunction { |
| 86 | private final ExtismFunction f; |
nothing calls this directly
no test coverage detected