Pointer _wasmFnImportTrampoline()

in wasm/lib/src/module.dart [64:75]


Pointer<WasmerTrap> _wasmFnImportTrampoline(
  Pointer<_WasmFnImport> imp,
  Pointer<WasmerValVec> args,
  Pointer<WasmerValVec> results,
) {
  try {
    _WasmFnImport._call(imp, args, results);
  } catch (exception) {
    return runtime.newTrap(exception);
  }
  return nullptr;
}