MCPcopy Create free account
hub / github.com/WebAssembly/wasm-c-api / wasm_func_call

Function wasm_func_call

src/wasm-c.cc:838–844  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

836}
837
838wasm_trap_t* wasm_func_call(
839 const wasm_func_t* func, const wasm_val_vec_t* args, wasm_val_vec_t* results
840) {
841 auto args_ = borrow_val_vec(args);
842 auto results_ = borrow_val_vec(results);
843 return release_trap(func->call(args_.it, results_.it));
844}
845
846
847// Global Instances

Callers 15

mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
check_callFunction · 0.85
check_okFunction · 0.85
check_trapFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
runFunction · 0.85
call_v_rFunction · 0.85
call_r_vFunction · 0.85

Calls 1

callMethod · 0.80

Tested by

no test coverage detected