Source code for polywrap_wasm.linker.abort

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

from .types import BaseWrapLinker


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