Source code for polywrap_wasm.linker.debug

"""This module contains the linker for the debug family of Wasm imports."""
from wasmtime import FuncType, ValType

from .types import BaseWrapLinker


[docs]class WrapDebugLinker(BaseWrapLinker): """Linker for the debug family of Wasm imports."""