blob: 89dde81e9fceb5a8242e77c43044baea245fd26e (
plain) (
tree)
|
|
local demo3 = {}
function demo3.init()
local wasm = require("wasm")
local wasm_file = "../wasm/test/injected.wasm"
local wasm_module = Wasm_Module()
local table_type = table_type_t()
local resizable_limit = resizable_limit_t()
table_type:set_resizable_limit(resizable_limit)
end
return demo3
|