Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
function_table.ml
1 2 3 4 5 6 7 8 9 10 11 12 13
open Js_of_ocaml.Js open Js_of_ocaml.Js.Unsafe let set_function_table wasm_mod initial maximum funcnames offset = meth_call wasm_mod "setFunctionTable" [| inject initial; inject maximum; inject (array (Array.of_list (List.map string funcnames))); inject offset; |] let unlimited = -1