feat(wasm-backend)!: split Function trait, improve naming (#347)

split function interface, improve naming
This commit is contained in:
Valery Antopol
2023-07-25 18:23:54 +03:00
committed by GitHub
parent 974f5931ab
commit 0f9979ae11
21 changed files with 113 additions and 87 deletions

View File

@ -52,5 +52,5 @@ pub trait Instance<WB: WasmBackend>: Clone {
&self,
store: &mut impl AsContextMut<WB>,
name: &str,
) -> ResolveResult<<WB as WasmBackend>::Function>;
) -> ResolveResult<<WB as WasmBackend>::ExportFunction>;
}