This is use to free memory after a function call
| 180 | |
| 181 | /// This is use to free memory after a function call |
| 182 | pub(crate) struct WasmSliceWrapper<'w> { |
| 183 | wasm_alloc: &'w WasmAlloc, |
| 184 | wasm_slice: WasmSlice, |
| 185 | } |
| 186 | |
| 187 | impl<'w> WasmSliceWrapper<'w> { |
| 188 | pub fn new(wasm_alloc: &'w WasmAlloc, wasm_slice: WasmSlice) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…