Source code for polywrap_wasm.linker.subinvoke_implementation

"""This module contains the linker for the subinvoke implementation family of Wasm imports."""
# pylint: disable=unused-argument
# pylint: disable=duplicate-code
from wasmtime import FuncType, ValType

from .types import BaseWrapLinker


[docs]class WrapSubinvokeImplementationLinker(BaseWrapLinker): """Linker for the subinvoke implementation family of Wasm imports."""