callIndirect<F extends Function> method Null safety

F callIndirect<F extends Function>(
  1. WasmI32 index
)

Call a function stored in the table using the call_indirect Wasm instructionm. The function value returned from this method must be called directly.

Implementation

@pragma("wasm:entry-point")
external F callIndirect<F extends Function>(WasmI32 index);